2020-06-03 00:17:33 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
|
|
|
, pyparsing
|
2020-09-13 12:23:13 +00:00
|
|
|
, amply
|
2020-06-03 00:17:33 +00:00
|
|
|
}:
|
2018-01-29 05:40:54 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "PuLP";
|
2020-12-22 06:23:13 +00:00
|
|
|
version = "2.4";
|
2018-01-29 05:40:54 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-12-22 06:23:13 +00:00
|
|
|
sha256 = "b2aff10989b3692e3a59301a0cb0acddeb25dcea378f8804c86007075eae55b5";
|
2018-01-29 05:40:54 +00:00
|
|
|
};
|
|
|
|
|
2020-09-13 12:23:13 +00:00
|
|
|
propagatedBuildInputs = [ pyparsing amply ];
|
2018-01-29 05:40:54 +00:00
|
|
|
|
|
|
|
# only one test that requires an extra
|
|
|
|
doCheck = false;
|
2020-06-03 00:17:33 +00:00
|
|
|
pythonImportsCheck = [ "pulp" ];
|
2018-01-29 05:40:54 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/coin-or/pulp";
|
2018-01-29 05:40:54 +00:00
|
|
|
description = "PuLP is an LP modeler written in python";
|
|
|
|
maintainers = with maintainers; [ teto ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|