about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyschedule
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2019-04-14 20:16:08 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2019-04-14 21:33:52 -0400
commitb7475accf6810e7bac9aae91d72de2f92da13d8e (patch)
tree136ec82bf2036b003fc27f5abf37e0c463160167 /pkgs/development/python-modules/pyschedule
parentd4927384591c7ebbd4ef51e5d0007f77869dd4c5 (diff)
pythonPackages.pyschedule: init at 0.2.34
closes PR #37371. That PR was inactive
Diffstat (limited to 'pkgs/development/python-modules/pyschedule')
-rw-r--r--pkgs/development/python-modules/pyschedule/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyschedule/default.nix b/pkgs/development/python-modules/pyschedule/default.nix
new file mode 100644
index 0000000000000..5fbabdc098833
--- /dev/null
+++ b/pkgs/development/python-modules/pyschedule/default.nix
@@ -0,0 +1,29 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pulp
+}:
+
+buildPythonPackage rec {
+  pname = "pyschedule";
+  version = "0.2.34";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "6bba9e9ea07906ce2dfe3cd847c1822b137f6b13e9f975c50b347312fd98e110";
+  };
+
+  propagatedBuildInputs = [
+    pulp
+  ];
+
+  # tests not included with pypi release (in examples)
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Formulate and solve resource-constrained scheduling problems";
+    homepage = https://github.com/timnon/pyschedule;
+    license = licenses.asl20;
+    maintainers = [ maintainers.costrouc ];
+  };
+}