pythonPackages.hdbscan: fix build by applying upstream patch
simple missing import in one of the test modules
This commit is contained in:
parent
636f1f08b0
commit
2be7ccf2a3
@ -6,6 +6,7 @@
|
|||||||
, scipy
|
, scipy
|
||||||
, scikitlearn
|
, scikitlearn
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, fetchpatch
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -17,6 +18,15 @@ buildPythonPackage rec {
|
|||||||
sha256 = "263e9f34db63eec217d50f2ca3e65049c065775dc4095b5ee817824cd2b5b51b";
|
sha256 = "263e9f34db63eec217d50f2ca3e65049c065775dc4095b5ee817824cd2b5b51b";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix Tests. Drop in release >0.8.20
|
||||||
|
(fetchpatch {
|
||||||
|
name = "test-rsl-missing-import.patch";
|
||||||
|
url = https://github.com/scikit-learn-contrib/hdbscan/commit/e40ccef139e56e38adf7bd6912cd63efd97598f9.patch;
|
||||||
|
sha256 = "0cfq4ja7j61h2zwd1jw5gagcz2sg18kjnx29sb0bwa13wfw6fip0";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [ nose ];
|
checkInputs = [ nose ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ cython numpy scipy scikitlearn ];
|
propagatedBuildInputs = [ cython numpy scipy scikitlearn ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user