Commit 5ed7ebe4 authored by ayes-web's avatar ayes-web
Browse files

python3Packages.gekko: init at 1.0.6

parent efd4c89c
Loading
Loading
Loading
Loading
+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
@@ -4357,6 +4357,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 { };