1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools
5, wheel
6, numpy
7}:
8
9buildPythonPackage rec {
10 pname = "iisignature";
11 version = "0.24";
12 pyproject = true;
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-C5MUxui4BIf68yMZH7NZhq1CJuhrDGfPCjspObaVucY=";
17 };
18
19 nativeBuildInputs = [
20 setuptools
21 wheel
22 ];
23
24 propagatedBuildInputs = [
25 numpy
26 ];
27
28 # PyPI tarball has no tests
29 doCheck = false;
30
31 pythonImportsCheck = [ "iisignature" ];
32
33 meta = with lib; {
34 description = "Iterated integral signature calculations";
35 homepage = "https://pypi.org/project/iisignature";
36 license = licenses.mit;
37 maintainers = with maintainers; [ mbalatsko ];
38 };
39}