Merge pull request #303550 from r-ryantm/auto-update/python312Packages.gekko

python312Packages.gekko: 1.1.0 -> 1.1.1
This commit is contained in:
Fabian Affolter 2024-04-12 12:23:51 +02:00 committed by GitHub
commit 6e3742f3c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 20 additions and 18 deletions

View File

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