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