nixpkgs/pkgs/development/python-modules/ripser/default.nix

49 lines
833 B
Nix
Raw Normal View History

2019-07-13 01:35:14 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, cython
, numpy
, scipy
, scikitlearn
, persim
, pytest
}:
buildPythonPackage rec {
pname = "ripser";
2019-10-24 07:47:47 +01:00
version = "0.4.1";
2019-07-13 01:35:14 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:47 +01:00
sha256 = "a4015b413c24e3074f82f31771b1eb805e054b8cf444db51ce8ca5afa42cf130";
2019-07-13 01:35:14 +01:00
};
checkInputs = [
pytest
];
propagatedBuildInputs = [
cython
numpy
scipy
scikitlearn
persim
];
checkPhase = ''
# specifically needed for darwin
export HOME=$(mktemp -d)
mkdir -p $HOME/.matplotlib
echo "backend: ps" > $HOME/.matplotlib/matplotlibrc
pytest
'';
meta = with lib; {
description = "A Lean Persistent Homology Library for Python";
homepage = "https://ripser.scikit-tda.org";
2019-07-13 01:35:14 +01:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}