about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hdbscan
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-09-01 21:24:07 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-09-01 21:24:07 +0200
commit3b3629a35baa1064adf4057ac5d6c2b99962b877 (patch)
treed087ac23b311903e9b0c894b97bf4f1383bf56f2 /pkgs/development/python-modules/hdbscan
parent4eafb64b9bc2f41dc413af6c294f205a9e2d1860 (diff)
python3Packages.hdbscan: add imports check
Diffstat (limited to 'pkgs/development/python-modules/hdbscan')
-rw-r--r--pkgs/development/python-modules/hdbscan/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/hdbscan/default.nix b/pkgs/development/python-modules/hdbscan/default.nix
index bf48d6cf5e761..9fa932c7e4181 100644
--- a/pkgs/development/python-modules/hdbscan/default.nix
+++ b/pkgs/development/python-modules/hdbscan/default.nix
@@ -44,6 +44,8 @@ buildPythonPackage rec {
     "test_hdbscan_boruvka_balltree_matches"
   ];
 
+  pythonImportsCheck = [ "hdbscan" ];
+
   meta = with lib; {
     description = "Hierarchical Density-Based Spatial Clustering of Applications with Noise, a clustering algorithm with a scikit-learn compatible API";
     homepage =  "https://github.com/scikit-learn-contrib/hdbscan";