1{ stdenv, fetchPypi, buildPythonPackage, pyparsing }:
2
3buildPythonPackage rec {
4 pname = "PuLP";
5 version = "2.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "fb0b0e8073aa82f3459c4241b9625e0ccd26c0838ad8253c6bc67e041901b765";
10 };
11
12 propagatedBuildInputs = [ pyparsing ];
13
14 # only one test that requires an extra
15 doCheck = false;
16
17 meta = with stdenv.lib; {
18 homepage = https://github.com/coin-or/pulp;
19 description = "PuLP is an LP modeler written in python";
20 maintainers = with maintainers; [ teto ];
21 license = licenses.mit;
22 };
23}