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

51 lines
972 B
Nix
Raw Normal View History

2019-07-13 01:35:53 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, scikitlearn
, numpy
, matplotlib
, scipy
, hopcroftkarp
, pytest
}:
buildPythonPackage rec {
pname = "persim";
2019-10-24 07:47:41 +01:00
version = "0.1.1";
2019-07-13 01:35:53 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:41 +01:00
sha256 = "932bb0489d4dc158e4f007ec609c61e4700003d882d8e7bdac218b70d14ce9cf";
2019-07-13 01:35:53 +01:00
};
propagatedBuildInputs = [
scikitlearn
numpy
matplotlib
scipy
hopcroftkarp
];
checkInputs = [
pytest
];
checkPhase = ''
# specifically needed for darwin
export HOME=$(mktemp -d)
mkdir -p $HOME/.matplotlib
echo "backend: ps" > $HOME/.matplotlib/matplotlibrc
# ignore tests due to python 2.7 fail
pytest --ignore test/test_plots.py \
--ignore test/test_visuals.py
'';
meta = with lib; {
description = "Distances and representations of persistence diagrams";
homepage = https://persim.scikit-tda.org;
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}