summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/greenlet/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/greenlet/default.nix')
-rw-r--r--pkgs/development/python-modules/greenlet/default.nix16
1 files changed, 12 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/greenlet/default.nix b/pkgs/development/python-modules/greenlet/default.nix
index 8762d62e59b9..4d829f3d6473 100644
--- a/pkgs/development/python-modules/greenlet/default.nix
+++ b/pkgs/development/python-modules/greenlet/default.nix
@@ -3,6 +3,7 @@
, fetchPypi
, six
, isPyPy
+, python
}:
@@ -16,11 +17,18 @@ buildPythonPackage rec {
sha256 = "c87df8ae3f01ffb4483c796fe1b15232ce2b219f0b18126948616224d3f658ee";
};
- propagatedBuildInputs = [ six ];
+ checkPhase = ''
+ runHook preCheck
+ ${python.interpreter} -m unittest discover -v greenlet.tests
+ runHook postCheck
+ '';
- meta = {
- homepage = "https://pypi.python.org/pypi/greenlet";
+ meta = with lib; {
+ homepage = "https://github.com/python-greenlet/greenlet";
description = "Module for lightweight in-process concurrent programming";
- license = lib.licenses.lgpl2;
+ license = with licenses; [
+ psfl # src/greenlet/slp_platformselect.h & files in src/greenlet/platform/ directory
+ mit
+ ];
};
}