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