Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / iisignature / default.nix
blob1ddfd05b532667997ddb077585314c915a0f9f78
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , wheel
6 , numpy
7 }:
9 buildPythonPackage rec {
10   pname = "iisignature";
11   version = "0.24";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-C5MUxui4BIf68yMZH7NZhq1CJuhrDGfPCjspObaVucY=";
17   };
19   nativeBuildInputs = [
20     setuptools
21     wheel
22   ];
24   propagatedBuildInputs = [
25     numpy
26   ];
28   # PyPI tarball has no tests
29   doCheck = false;
31   pythonImportsCheck = [ "iisignature" ];
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   };