python310Packages.pulp: disable on older Python releases

- prepare to run the tests
This commit is contained in:
Fabian Affolter 2022-11-05 10:31:47 +01:00 committed by GitHub
parent 2435d48ae7
commit 9027598655
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,29 +1,49 @@
{ lib
, fetchPypi
, buildPythonPackage
, pyparsing
, amply
, buildPythonPackage
, fetchFromGitHub
, pyparsing
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "PuLP";
pname = "pulp";
version = "2.7.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-5z7msy1jnJuM9LSt7TNLoVi+X4MTVE4Fb3lqzgoQrmM=";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "coin-or";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-j0f6OiscJyTqPNyLp0qWRjCGLWuT3HdU1S/sxpnsiMo=";
};
propagatedBuildInputs = [ pyparsing amply ];
propagatedBuildInputs = [
amply
pyparsing
];
# only one test that requires an extra
doCheck = false;
pythonImportsCheck = [ "pulp" ];
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";
description = "PuLP is an LP modeler written in python";
maintainers = with maintainers; [ teto ];
license = licenses.mit;
maintainers = with maintainers; [ teto ];
};
}