nixpkgs/pkgs/development/python-modules/gekko/default.nix
2024-05-01 16:07:57 +03:00

39 lines
777 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
numpy,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "gekko";
version = "1.1.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-xc6NfPCvkEYjUG82QmFqDuu02QNwKfoS6DDpkdaMWJ8=";
};
build-system = [ setuptools ];
dependencies = [ numpy ];
# Module has no tests
doCHeck = false;
pythonImportsCheck = [ "gekko" ];
meta = with lib; {
description = "Module for machine learning and optimization";
homepage = "https://github.com/BYU-PRISM/GEKKO";
changelog = "https://github.com/BYU-PRISM/GEKKO/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ BatteredBunny ];
};
}