nixpkgs/pkgs/development/python-modules/pulp/default.nix
Fabian Affolter 9027598655
python310Packages.pulp: disable on older Python releases
- prepare to run the tests
2022-11-05 10:31:47 +01:00

50 lines
862 B
Nix

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