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

51 lines
879 B
Nix
Raw Normal View History

2019-07-13 01:35:14 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
2019-07-13 01:35:14 +01:00
, cython
, numpy
, scipy
, scikitlearn
, persim
, pytest
}:
buildPythonPackage rec {
pname = "ripser";
2020-11-29 14:04:41 +00:00
version = "0.6.0";
disabled = pythonOlder "3.6";
2019-07-13 01:35:14 +01:00
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:41 +00:00
sha256 = "5c47deffbf9e163186b0997f2d59486d96a7c65766e76500f754fadfbc89f5d9";
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 ];
};
}