2020-06-03 01:17:33 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
|
|
|
, pyparsing
|
2020-09-13 13:23:13 +01:00
|
|
|
, amply
|
2020-06-03 01:17:33 +01:00
|
|
|
}:
|
2018-01-29 05:40:54 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "PuLP";
|
2020-10-28 13:55:01 +00:00
|
|
|
version = "2.3.1";
|
2018-01-29 05:40:54 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-28 13:55:01 +00:00
|
|
|
sha256 = "5bbe53f854fb3b689e4faacac5bdb5fa576cb270fc12c78edef827dd46a4fb50";
|
2018-01-29 05:40:54 +00:00
|
|
|
};
|
|
|
|
|
2020-09-13 13:23:13 +01:00
|
|
|
propagatedBuildInputs = [ pyparsing amply ];
|
2018-01-29 05:40:54 +00:00
|
|
|
|
|
|
|
# only one test that requires an extra
|
|
|
|
doCheck = false;
|
2020-06-03 01:17:33 +01:00
|
|
|
pythonImportsCheck = [ "pulp" ];
|
2018-01-29 05:40:54 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01: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;
|
|
|
|
};
|
|
|
|
}
|