ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pyschedule / default.nix
blobc387bdef4b8c8b5620114305bc2ba5eadf1ce697
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pulp
5 }:
7 buildPythonPackage rec {
8   pname = "pyschedule";
9   version = "0.2.34";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "6bba9e9ea07906ce2dfe3cd847c1822b137f6b13e9f975c50b347312fd98e110";
14   };
16   propagatedBuildInputs = [
17     pulp
18   ];
20   # tests not included with pypi release (in examples)
21   doCheck = false;
23   meta = with lib; {
24     description = "Formulate and solve resource-constrained scheduling problems";
25     homepage = "https://github.com/timnon/pyschedule";
26     license = licenses.asl20;
27     maintainers = [ maintainers.costrouc ];
28   };