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

51 lines
915 B
Nix
Raw Normal View History

2019-07-13 01:35:53 +01:00
{ lib
, buildPythonPackage
, fetchPypi
2021-04-27 04:06:02 +01:00
, deprecated
, hopcroftkarp
, joblib
2019-07-13 01:35:53 +01:00
, matplotlib
2021-04-27 04:06:02 +01:00
, numpy
, scikit-learn
2019-07-13 01:35:53 +01:00
, scipy
2021-04-27 04:06:02 +01:00
, pytestCheckHook
2019-07-13 01:35:53 +01:00
}:
buildPythonPackage rec {
pname = "persim";
2021-06-18 22:47:29 +01:00
version = "0.3.1";
2019-07-13 01:35:53 +01:00
src = fetchPypi {
inherit pname version;
2021-06-18 22:47:29 +01:00
sha256 = "ef0f0a247adcf6104ecac14117db0b24581710ea8a8d964816805395700b4975";
2019-07-13 01:35:53 +01:00
};
propagatedBuildInputs = [
2021-04-27 04:06:02 +01:00
deprecated
hopcroftkarp
joblib
2019-07-13 01:35:53 +01:00
matplotlib
2021-04-27 04:06:02 +01:00
numpy
scikit-learn
2019-07-13 01:35:53 +01:00
scipy
];
checkInputs = [
2021-04-27 04:06:02 +01:00
pytestCheckHook
2019-07-13 01:35:53 +01:00
];
2021-04-27 04:06:02 +01:00
preCheck = ''
2019-07-13 01:35:53 +01:00
# specifically needed for darwin
export HOME=$(mktemp -d)
mkdir -p $HOME/.matplotlib
echo "backend: ps" > $HOME/.matplotlib/matplotlibrc
'';
meta = with lib; {
description = "Distances and representations of persistence diagrams";
homepage = "https://persim.scikit-tda.org";
2019-07-13 01:35:53 +01:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}