Commit 6a22aaca authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python312Packages.pyseries: init at 1.0.26

parent 41ea9f46
Loading
Loading
Loading
Loading
+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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };