summary refs log tree commit diff
path: root/pkgs/development/python-modules/application/default.nix
blob: 520e01723e6cb195a07f6c8e1a9f9f10477d90a8 (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.0.2";
  disabled = isPy3k;

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

  buildInputs = [ zope_interface ];

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