Loading pkgs/development/python-modules/pyseries/default.nix 0 → 100644 +63 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, # build-system setuptools, # dependencies deepdish, matplotlib, numpy, obspy, pandas, pyedflib, scikit-learn, scipy, seaborn, tabulate, }: buildPythonPackage rec { pname = "pyseries"; version = "1.0.26"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-Cq+DXt0/6Ncae8OO+kaPuTCxouh0cFPHP+T8tGVXxXo="; }; build-system = [ setuptools ]; pythonRemoveDeps = [ # sklearn is the old name of the scikit-learn package "sklearn" ]; dependencies = [ deepdish matplotlib numpy obspy pandas pyedflib scikit-learn scipy seaborn tabulate ]; pythonImportsCheck = [ "pyseries" ]; # no tests in the pypi archive doCheck = false; meta = { description = "Package for statistical analysis of time-series data"; homepage = "https://pypi.org/project/pyseries/"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -10649,6 +10649,8 @@ self: super: with self; { pysequoia = callPackage ../development/python-modules/pysequoia { }; pyseries = callPackage ../development/python-modules/pyseries { }; pyschemes = callPackage ../development/python-modules/pyschemes { }; pyschlage = callPackage ../development/python-modules/pyschlage { }; Loading Loading
pkgs/development/python-modules/pyseries/default.nix 0 → 100644 +63 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, # build-system setuptools, # dependencies deepdish, matplotlib, numpy, obspy, pandas, pyedflib, scikit-learn, scipy, seaborn, tabulate, }: buildPythonPackage rec { pname = "pyseries"; version = "1.0.26"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-Cq+DXt0/6Ncae8OO+kaPuTCxouh0cFPHP+T8tGVXxXo="; }; build-system = [ setuptools ]; pythonRemoveDeps = [ # sklearn is the old name of the scikit-learn package "sklearn" ]; dependencies = [ deepdish matplotlib numpy obspy pandas pyedflib scikit-learn scipy seaborn tabulate ]; pythonImportsCheck = [ "pyseries" ]; # no tests in the pypi archive doCheck = false; meta = { description = "Package for statistical analysis of time-series data"; homepage = "https://pypi.org/project/pyseries/"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -10649,6 +10649,8 @@ self: super: with self; { pysequoia = callPackage ../development/python-modules/pysequoia { }; pyseries = callPackage ../development/python-modules/pyseries { }; pyschemes = callPackage ../development/python-modules/pyschemes { }; pyschlage = callPackage ../development/python-modules/pyschlage { }; Loading