depot/third_party/nixpkgs/pkgs/development/python-modules/iisignature/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

38 lines
700 B
Nix

{
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 = with lib; {
description = "Iterated integral signature calculations";
homepage = "https://pypi.org/project/iisignature";
license = licenses.mit;
maintainers = with maintainers; [ mbalatsko ];
};
}