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

51 lines
913 B
Nix
Raw Normal View History

2019-07-12 17:35:53 -07:00
{ lib
, buildPythonPackage
, fetchPypi
2021-04-26 20:06:02 -07:00
, deprecated
, hopcroftkarp
, joblib
2019-07-12 17:35:53 -07:00
, matplotlib
2021-04-26 20:06:02 -07:00
, numpy
, scikitlearn
2019-07-12 17:35:53 -07:00
, scipy
2021-04-26 20:06:02 -07:00
, pytestCheckHook
2019-07-12 17:35:53 -07:00
}:
buildPythonPackage rec {
pname = "persim";
2021-03-24 02:28:19 -07:00
version = "0.3.0";
2019-07-12 17:35:53 -07:00
src = fetchPypi {
inherit pname version;
2021-03-24 02:28:19 -07:00
sha256 = "5db2f7f65b1ad7b2cbfa254afb692ca0a91aeb686e82d6905838c41f516e6a13";
2019-07-12 17:35:53 -07:00
};
propagatedBuildInputs = [
2021-04-26 20:06:02 -07:00
deprecated
hopcroftkarp
joblib
2019-07-12 17:35:53 -07:00
matplotlib
2021-04-26 20:06:02 -07:00
numpy
scikitlearn
2019-07-12 17:35:53 -07:00
scipy
];
checkInputs = [
2021-04-26 20:06:02 -07:00
pytestCheckHook
2019-07-12 17:35:53 -07:00
];
2021-04-26 20:06:02 -07:00
preCheck = ''
2019-07-12 17:35:53 -07: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-12 17:35:53 -07:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}