mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
49 lines
933 B
Nix
49 lines
933 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, isPy27
|
|
, pyutilib
|
|
, appdirs
|
|
, ply
|
|
, six
|
|
, nose
|
|
, glpk
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyomo";
|
|
version = "5.7.3";
|
|
disabled = isPy27; # unable to import pyutilib.th
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "pyomo";
|
|
owner = "pyomo";
|
|
rev = version;
|
|
sha256 = "sha256-p0/DdCwyXdzXElzjWewKs0Oi7BMXC+BxgYikdZL0t68=";
|
|
};
|
|
|
|
checkInputs = [ nose glpk ];
|
|
propagatedBuildInputs = [
|
|
pyutilib
|
|
appdirs
|
|
ply
|
|
six
|
|
];
|
|
|
|
checkPhase = ''
|
|
rm pyomo/bilevel/tests/test_blp.py \
|
|
pyomo/version/tests/test_installer.py \
|
|
pyomo/common/tests/test_download.py \
|
|
pyomo/core/tests/examples/test_pyomo.py
|
|
export HOME=$TMPDIR
|
|
nosetests
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Pyomo: Python Optimization Modeling Objects";
|
|
homepage = "http://pyomo.org";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
}
|