summary refs log tree commit diff
path: root/pkgs/development/python-modules/pulp/default.nix
blob: 60fa54438f9ce0b6cfa6fd552aecaad7b4a66033 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ lib
, amply
, buildPythonPackage
, fetchFromGitHub
, pyparsing
, pythonOlder
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "pulp";
  version = "2.7.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "coin-or";
    repo = pname;
    rev = "refs/tags/${version}";
    hash = "sha256-j0f6OiscJyTqPNyLp0qWRjCGLWuT3HdU1S/sxpnsiMo=";
  };

  propagatedBuildInputs = [
    amply
    pyparsing
  ];

  checkInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "pulp"
  ];

  disabledTests = [
    # The solver is not available
    "PULP_CBC_CMDTest"
    "test_examples"
  ];

  meta = with lib; {
    description = "Module to generate  generate MPS or LP files";
    homepage = "https://github.com/coin-or/pulp";
    license = licenses.mit;
    maintainers = with maintainers; [ teto ];
  };
}