Loading pkgs/development/python-modules/fst-pso/default.nix 0 → 100644 +39 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , miniful , numpy , pythonOlder }: buildPythonPackage rec { pname = "fst-pso"; version = "1.8.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-s9FuwnsLTTazWzBq9AwAzQs05eCp4wpx7QJJDolUomo="; }; propagatedBuildInputs = [ miniful numpy ]; # Module has no tests doCheck = false; pythonImportsCheck = [ "fstpso" ]; meta = with lib; { description = "Fuzzy Self-Tuning PSO global optimization library"; homepage = "https://github.com/aresio/fst-pso"; license = with licenses; [ lgpl3Only ]; maintainers = with maintainers; [ fab ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3721,6 +3721,8 @@ self: super: with self; { fsspec = callPackage ../development/python-modules/fsspec { }; fst-pso = callPackage ../development/python-modules/fst-pso { }; ftfy = callPackage ../development/python-modules/ftfy { }; ftputil = callPackage ../development/python-modules/ftputil { }; Loading Loading
pkgs/development/python-modules/fst-pso/default.nix 0 → 100644 +39 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , miniful , numpy , pythonOlder }: buildPythonPackage rec { pname = "fst-pso"; version = "1.8.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-s9FuwnsLTTazWzBq9AwAzQs05eCp4wpx7QJJDolUomo="; }; propagatedBuildInputs = [ miniful numpy ]; # Module has no tests doCheck = false; pythonImportsCheck = [ "fstpso" ]; meta = with lib; { description = "Fuzzy Self-Tuning PSO global optimization library"; homepage = "https://github.com/aresio/fst-pso"; license = with licenses; [ lgpl3Only ]; maintainers = with maintainers; [ fab ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3721,6 +3721,8 @@ self: super: with self; { fsspec = callPackage ../development/python-modules/fsspec { }; fst-pso = callPackage ../development/python-modules/fst-pso { }; ftfy = callPackage ../development/python-modules/ftfy { }; ftputil = callPackage ../development/python-modules/ftputil { }; Loading