mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
04b45828c6
A python Linear Programming API.
25 lines
583 B
Nix
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;
|
|
};
|
|
}
|