Commit 53809887 authored by Maksym Balatsko's avatar Maksym Balatsko
Browse files

python3Packages.iisignature: init at 0.24

parent cdfc61c6
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5204,6 +5204,8 @@ self: super: with self; {
    inherit (pkgs) igraph;
  };
  iisignature = callPackage ../development/python-modules/iisignature { };
  ijson = callPackage ../development/python-modules/ijson { };
  ilua = callPackage ../development/python-modules/ilua { };