pulp: init at 1.6.0

A python Linear Programming API.
This commit is contained in:
Matthieu Coudron 2018-01-29 14:40:54 +09:00
parent 8ecadc1250
commit 04b45828c6
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchPypi, buildPythonPackage, pyparsing }:
buildPythonPackage rec {
pname = "PuLP";
version = "1.6.8";
src = fetchPypi {
inherit pname version;
sha256 = "1irzpfnnm5f0qf8y9ddxi489nwixyj0q4zlvqafm621bijkxdv6g";
};
buildInputs = [];
propagatedBuildInputs = [ pyparsing ];
# only one test that requires an extra
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/coin-or/pulp;
description = "PuLP is an LP modeler written in python";
maintainers = with maintainers; [ teto ];
license = licenses.mit;
};
}

View file

@ -22374,6 +22374,8 @@ EOF
pyemd = callPackage ../development/python-modules/pyemd { };
pulp = callPackage ../development/python-modules/pulp { };
behave = callPackage ../development/python-modules/behave { };
pyhamcrest = callPackage ../development/python-modules/pyhamcrest { };