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

View File

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