summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyschedule/default.nix
blob: c387bdef4b8c8b5620114305bc2ba5eadf1ce697 (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
27
28
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 ];
  };
}