python312Packages.pyseries: init at 1.0.26
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user