3
0
Fork 0
forked from mirrors/nixpkgs
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-03-24 09:28:19 +00:00
version = "0.3.0";
2019-07-13 01:35:53 +01:00
src = fetchPypi {
inherit pname version;
2021-03-24 09:28:19 +00:00
sha256 = "5db2f7f65b1ad7b2cbfa254afb692ca0a91aeb686e82d6905838c41f516e6a13";
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 ];
};
}