Unverified Commit 47dd9474 authored by Emily Trau's avatar Emily Trau Committed by GitHub
Browse files

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

python3Packages.gekko: init at 1.0.6
parents 837bf76e 5ed7ebe4
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };