python312Packages.pyseries: init at 1.0.26

This commit is contained in:
Gaetan Lepage
2025-01-02 13:33:51 +01:00
parent 41ea9f4690
commit 6a22aaca72
2 changed files with 65 additions and 0 deletions
@@ -0,0 +1,63 @@
{
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
View File
@@ -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 { };