python3Packages.kmapper: cleanup

Changed files
+21 -14
pkgs
development
python-modules
kmapper
+21 -14
pkgs/development/python-modules/kmapper/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
+
+
# build-system
setuptools,
-
scikit-learn,
+
+
# dependencies
+
jinja2,
numpy,
+
scikit-learn,
scipy,
-
jinja2,
-
pytestCheckHook,
+
+
# tests
+
igraph,
+
ipywidgets,
+
matplotlib,
networkx,
-
matplotlib,
-
igraph,
plotly,
-
ipywidgets,
+
pytestCheckHook,
}:
buildPythonPackage rec {
···
build-system = [ setuptools ];
dependencies = [
-
scikit-learn
+
jinja2
numpy
+
scikit-learn
scipy
-
jinja2
];
pythonImportsCheck = [ "kmapper" ];
nativeCheckInputs = [
-
pytestCheckHook
-
networkx
+
igraph
+
ipywidgets
matplotlib
-
igraph
+
networkx
plotly
-
ipywidgets
+
pytestCheckHook
];
-
meta = with lib; {
+
meta = {
description = "Python implementation of Mapper algorithm for Topological Data Analysis";
homepage = "https://kepler-mapper.scikit-tda.org/";
-
license = licenses.mit;
+
changelog = "https://github.com/scikit-tda/kepler-mapper/releases/tag/v${version}";
+
license = lib.licenses.mit;
maintainers = [ ];
};
}