mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
Merge pull request #267470 from ayes-web/gekko-init
python3Packages.gekko: init at 1.0.6
This commit is contained in:
commit
47dd947408
@ -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;
|
||||
|
36
pkgs/development/python-modules/gekko/default.nix
Normal file
36
pkgs/development/python-modules/gekko/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user