nixpkgs/pkgs/development/python-modules/pulp/default.nix
Matthieu Coudron 04b45828c6 pulp: init at 1.6.0
A python Linear Programming API.
2018-01-30 08:56:09 +09:00

25 lines
583 B
Nix

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