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

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

  src = fetchFromGitHub {
    owner = "AGProjects";
    repo = pname;
    rev = "release-${version}";
    sha256 = "1xd2gbpmx2ghap9cnr1h6sxjai9419bdp3y9qp5lh67977m0qg30";
  };

  buildInputs = [ zope_interface ];

  # No tests upstream to run
  doCheck = false;

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