Merge pull request #267470 from ayes-web/gekko-init

python3Packages.gekko: init at 1.0.6
This commit is contained in:
Emily Trau 2023-11-29 18:02:06 +11:00 committed by GitHub
commit 47dd947408
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 0 deletions

View File

@ -1888,6 +1888,12 @@
githubId = 135230;
name = "Aycan iRiCAN";
};
ayes-web = {
email = "ayes2022@protonmail.com";
github = "ayes-web";
githubId = 52951851;
name = "ayes-web";
};
aynish = {
github = "Chickensoupwithrice";
githubId = 22575913;

View File

@ -0,0 +1,36 @@
{ fetchPypi
, lib
, buildPythonPackage
, setuptools
, numpy
, wheel
,
}:
buildPythonPackage rec {
pname = "gekko";
version = "1.0.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-WNyEdJXBXfhrD1LywBBJ3Ehk+CnUS8VYbJFK8mpKV20=";
};
nativeBuildInputs = [
setuptools
wheel
];
pythonImportsCheck = [ "gekko" ];
propagatedBuildInputs = [
numpy
];
meta = with lib; {
homepage = "https://github.com/BYU-PRISM/GEKKO";
description = "A Python package for machine learning and optimization";
license = licenses.mit;
maintainers = with maintainers; [ ayes-web ];
};
}

View File

@ -4373,6 +4373,8 @@ self: super: with self; {
gekitchen = callPackage ../development/python-modules/gekitchen { };
gekko = callPackage ../development/python-modules/gekko { };
gemfileparser = callPackage ../development/python-modules/gemfileparser { };
gemfileparser2 = callPackage ../development/python-modules/gemfileparser2 { };