python3Packages.esig: init at 0.9.8.3

This commit is contained in:
Maksym Balatsko
2023-10-05 00:27:54 -07:00
parent 5380988772
commit e4e2febd72
2 changed files with 62 additions and 0 deletions
@@ -0,0 +1,60 @@
{ lib
, buildPythonPackage
, fetchPypi
, cmake
, ninja
, oldest-supported-numpy
, scikit-build
, setuptools
, numpy
, iisignature
, boost
}:
buildPythonPackage rec {
pname = "esig";
version = "0.9.8.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-BGZaJSrpNSwZMHBYFDmDVPZOtgam/EVyh5Y5FAB8e1o=";
};
buildInputs = [
boost
];
dontUseCmakeConfigure = true;
nativeBuildInputs = [
cmake
ninja
oldest-supported-numpy
scikit-build
setuptools
];
propagatedBuildInputs = [
numpy
];
passthru.optional-dependencies = {
iisignature = [
iisignature
];
};
# PyPI tarball has no tests
doCheck = false;
pythonImportsCheck = [ "esig" ];
meta = with lib; {
description = "This package provides \"rough path\" tools for analysing vector time series";
homepage = "https://github.com/datasig-ac-uk/esig";
changelog = "https://github.com/datasig-ac-uk/esig/blob/release/CHANGELOG";
license = licenses.gpl3Only;
maintainers = with maintainers; [ mbalatsko ];
};
}
+2
View File
@@ -3551,6 +3551,8 @@ self: super: with self; {
es-client = callPackage ../development/python-modules/es-client { };
esig = callPackage ../development/python-modules/esig { };
espeak-phonemizer = callPackage ../development/python-modules/espeak-phonemizer { };
esphome-dashboard-api = callPackage ../development/python-modules/esphome-dashboard-api { };