python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / iisignature / default.nix
blob8be12a0ef76f3b1b6bc3ea5230f1587ddd899512
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   wheel,
7   numpy,
8 }:
10 buildPythonPackage rec {
11   pname = "iisignature";
12   version = "0.24";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-C5MUxui4BIf68yMZH7NZhq1CJuhrDGfPCjspObaVucY=";
18   };
20   nativeBuildInputs = [
21     setuptools
22     wheel
23   ];
25   propagatedBuildInputs = [ numpy ];
27   # PyPI tarball has no tests
28   doCheck = false;
30   pythonImportsCheck = [ "iisignature" ];
32   meta = with lib; {
33     description = "Iterated integral signature calculations";
34     homepage = "https://pypi.org/project/iisignature";
35     license = licenses.mit;
36     maintainers = with maintainers; [ mbalatsko ];
37   };