nixpkgs/pkgs/development/python-modules/pulp/default.nix
2019-09-26 09:17:23 +01:00

24 lines
563 B
Nix

{ stdenv, fetchPypi, buildPythonPackage, pyparsing }:
buildPythonPackage rec {
pname = "PuLP";
version = "1.6.8";
src = fetchPypi {
inherit pname version;
sha256 = "1irzpfnnm5f0qf8y9ddxi489nwixyj0q4zlvqafm621bijkxdv6g";
};
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;
};
}