about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pulp/default.nix
blob: 049d8720f455322c58310407af9311c1a87c6667 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchPypi, buildPythonPackage, pyparsing }:

buildPythonPackage rec {
  pname = "PuLP";
  version = "2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "fb0b0e8073aa82f3459c4241b9625e0ccd26c0838ad8253c6bc67e041901b765";
  };

  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;
  };
}