nixpkgs/pkgs/development/python-modules/kmapper/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

50 lines
856 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, scikit-learn
, numpy
, scipy
, jinja2
, pytestCheckHook
, networkx
, matplotlib
, igraph
, plotly
, ipywidgets
}:
buildPythonPackage rec {
pname = "kmapper";
version = "2.0.1";
src = fetchFromGitHub {
owner = "scikit-tda";
repo = "kepler-mapper";
rev = "v${version}";
sha256 = "1jqqrn7ig9kylcc8xbslxmchzghr9jgffaab3g3y3nyghk8azlgj";
};
propagatedBuildInputs = [
scikit-learn
numpy
scipy
jinja2
];
nativeCheckInputs = [
pytestCheckHook
networkx
matplotlib
igraph
plotly
ipywidgets
];
meta = with lib; {
description = "Python implementation of Mapper algorithm for Topological Data Analysis";
homepage = "https://kepler-mapper.scikit-tda.org/";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}