pythonPackages.pulp: 2.0 -> 2.1

This commit is contained in:
Matt Huszagh 2020-06-02 17:17:33 -07:00 committed by Jon
parent 4af635feff
commit 1471767b55

View File

@ -1,18 +1,23 @@
{ stdenv, fetchPypi, buildPythonPackage, pyparsing }: { stdenv
, fetchPypi
, buildPythonPackage
, pyparsing
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "PuLP"; pname = "PuLP";
version = "2.0"; version = "2.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "fb0b0e8073aa82f3459c4241b9625e0ccd26c0838ad8253c6bc67e041901b765"; sha256 = "06swbi7wygh7y0kxc85q1pdhzk662375d9a5jnahgr76hkwwkybn";
}; };
propagatedBuildInputs = [ pyparsing ]; propagatedBuildInputs = [ pyparsing ];
# only one test that requires an extra # only one test that requires an extra
doCheck = false; doCheck = false;
pythonImportsCheck = [ "pulp" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "https://github.com/coin-or/pulp"; homepage = "https://github.com/coin-or/pulp";