forked from mirrors/nixpkgs
commit
1716bf7498
24
pkgs/development/python-modules/pulp/default.nix
Normal file
24
pkgs/development/python-modules/pulp/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -22323,6 +22323,8 @@ EOF
|
||||||
|
|
||||||
pyemd = callPackage ../development/python-modules/pyemd { };
|
pyemd = callPackage ../development/python-modules/pyemd { };
|
||||||
|
|
||||||
|
pulp = callPackage ../development/python-modules/pulp { };
|
||||||
|
|
||||||
behave = callPackage ../development/python-modules/behave { };
|
behave = callPackage ../development/python-modules/behave { };
|
||||||
|
|
||||||
pyhamcrest = callPackage ../development/python-modules/pyhamcrest { };
|
pyhamcrest = callPackage ../development/python-modules/pyhamcrest { };
|
||||||
|
|
Loading…
Reference in a new issue