summary refs log tree commit diff
path: root/pkgs/development/python-modules/application/default.nix
blob: 654567cc23fcf172177e1ef3a1d693bf911bf503 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildPythonPackage, fetchdarcs, zope_interface, isPy3k }:

buildPythonPackage rec {
  pname = "python-application";
  version = "2.7.0";
  disabled = isPy3k;

  src = fetchdarcs {
    url = "http://devel.ag-projects.com/repositories/${pname}";
    rev = "release-${version}";
    sha256 = "1xpyk2v3naxkjhpyris58dxg1lxbraxgjd6f7w1sah5j0sk7psla";
  };

  buildInputs = [ zope_interface ];

  meta = with lib; {
    description = "Basic building blocks for python applications";
    homepage = https://github.com/AGProjects/python-application;
    license = licenses.lgpl2Plus;
  };
}