Merge pull request #59541 from costrouc/python-pyschedule-init

pythonPackages.pyschedule: init at 0.2.34
This commit is contained in:
worldofpeace 2019-04-14 22:35:23 -04:00 committed by GitHub
commit afdec9004e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -730,6 +730,8 @@ in {
pyscard = callPackage ../development/python-modules/pyscard { inherit (pkgs.darwin.apple_sdk.frameworks) PCSC; };
pyschedule = callPackage ../development/python-modules/pyschedule { };
pyside = callPackage ../development/python-modules/pyside { };
pysideShiboken = callPackage ../development/python-modules/pyside/shiboken.nix {