1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 wheel, 7 numpy, 8}: 9 10buildPythonPackage rec { 11 pname = "iisignature"; 12 version = "0.24"; 13 pyproject = true; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-C5MUxui4BIf68yMZH7NZhq1CJuhrDGfPCjspObaVucY="; 18 }; 19 20 nativeBuildInputs = [ 21 setuptools 22 wheel 23 ]; 24 25 propagatedBuildInputs = [ numpy ]; 26 27 # PyPI tarball has no tests 28 doCheck = false; 29 30 pythonImportsCheck = [ "iisignature" ]; 31 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 }; 38}