connman-gtk: fix FTBFS with GCC-14 (incompatible pointer types) (#376077)
[NixPkgs.git] / pkgs / development / python-modules / pyschedule / default.nix
blobe3f09a5a58a0c958a3cbc6a2a43fe06a6f0f31b4
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pulp,
6 }:
8 buildPythonPackage rec {
9   pname = "pyschedule";
10   version = "0.2.34";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "6bba9e9ea07906ce2dfe3cd847c1822b137f6b13e9f975c50b347312fd98e110";
16   };
18   propagatedBuildInputs = [ pulp ];
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 = [ ];
28   };