2020-03-29 23:18:04 +01:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, zope_interface, isPy3k }:
|
2018-03-31 10:12:05 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-application";
|
2020-03-29 23:18:04 +01:00
|
|
|
version = "2.8.0";
|
2018-03-31 10:12:05 +01:00
|
|
|
disabled = isPy3k;
|
|
|
|
|
2020-03-29 23:18:04 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AGProjects";
|
|
|
|
repo = pname;
|
2018-03-31 10:12:05 +01:00
|
|
|
rev = "release-${version}";
|
2020-03-29 23:18:04 +01:00
|
|
|
sha256 = "1xd2gbpmx2ghap9cnr1h6sxjai9419bdp3y9qp5lh67977m0qg30";
|
2018-03-31 10:12:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ zope_interface ];
|
2018-08-03 13:29:14 +01:00
|
|
|
|
2020-03-29 23:18:04 +01:00
|
|
|
# No tests upstream to run
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-08-03 13:29:14 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Basic building blocks for python applications";
|
2020-03-29 23:18:04 +01:00
|
|
|
homepage = "https://github.com/AGProjects/python-application";
|
|
|
|
changelog = "https://github.com/AGProjects/python-application/blob/master/ChangeLog";
|
2018-08-03 13:29:14 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
};
|
2018-03-31 10:12:05 +01:00
|
|
|
}
|