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