Loading pkgs/development/python-modules/niapy/default.nix 0 → 100644 +47 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , matplotlib , numpy , openpyxl , pandas , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "niapy"; version = "2.0.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "NiaOrg"; repo = "NiaPy"; rev = version; hash = "sha256-b/0TEO27fPuoPzkNBCwgUqBG+8htOR2ipFikpqjYdnM="; }; propagatedBuildInputs = [ matplotlib numpy openpyxl pandas ]; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "niapy" ]; meta = with lib; { description = "Micro framework for building nature-inspired algorithms"; homepage = "https://niapy.org/"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5809,6 +5809,8 @@ in { enablePython = true; # ... and its Python bindings })).python; niapy = callPackage ../development/python-modules/niapy { }; nibabel = callPackage ../development/python-modules/nibabel { }; nidaqmx = callPackage ../development/python-modules/nidaqmx { }; Loading Loading
pkgs/development/python-modules/niapy/default.nix 0 → 100644 +47 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , matplotlib , numpy , openpyxl , pandas , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "niapy"; version = "2.0.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "NiaOrg"; repo = "NiaPy"; rev = version; hash = "sha256-b/0TEO27fPuoPzkNBCwgUqBG+8htOR2ipFikpqjYdnM="; }; propagatedBuildInputs = [ matplotlib numpy openpyxl pandas ]; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "niapy" ]; meta = with lib; { description = "Micro framework for building nature-inspired algorithms"; homepage = "https://niapy.org/"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5809,6 +5809,8 @@ in { enablePython = true; # ... and its Python bindings })).python; niapy = callPackage ../development/python-modules/niapy { }; nibabel = callPackage ../development/python-modules/nibabel { }; nidaqmx = callPackage ../development/python-modules/nidaqmx { }; Loading