depot/third_party/nixpkgs/pkgs/development/python-modules/pyomo/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

61 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, parameterized
, ply
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyomo";
version = "6.7.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
repo = "pyomo";
owner = "pyomo";
rev = "refs/tags/${version}";
hash = "sha256-HoTtvda97ghQ0SQBZFGkDAwD2WNtZpIum2m1khivEK4=";
};
propagatedBuildInputs = [
ply
];
nativeCheckInputs = [
parameterized
pytestCheckHook
];
pythonImportsCheck = [
"pyomo"
];
preCheck = ''
export HOME=$(mktemp -d);
'';
disabledTestPaths = [
# Don't test the documentation and the examples
"doc/"
"examples/"
# Tests don't work properly in the sandbox
"pyomo/environ/tests/test_environ.py"
];
disabledTests = [
# Test requires lsb_release
"test_get_os_version"
];
meta = with lib; {
description = "Python Optimization Modeling Objects";
homepage = "http://pyomo.org";
changelog = "https://github.com/Pyomo/pyomo/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}