summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2023-11-29 15:10:45 +0100
committerGitHub <noreply@github.com>2023-11-29 15:10:45 +0100
commit52185213f6d008cbe0138362ad35ec3ef883db48 (patch)
treee44ee6a0960b0bb99caeffaa308247cd6f91bbb8
parenta10facb775d194000eb9e123041fc87e40f423bf (diff)
parent0f45ffcaff7250e9f61dd3c6f3b3bb1191ea477a (diff)
Merge pull request #270895 from NixOS/backport-270506-to-release-23.11
[Backport release-23.11] python311Packages.hdbscan: fix build
-rw-r--r--pkgs/development/python-modules/hdbscan/default.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/hdbscan/default.nix b/pkgs/development/python-modules/hdbscan/default.nix
index 89f01e29d46d7..50218663c43bf 100644
--- a/pkgs/development/python-modules/hdbscan/default.nix
+++ b/pkgs/development/python-modules/hdbscan/default.nix
@@ -20,18 +20,6 @@ buildPythonPackage rec {
     inherit pname version;
     hash = "sha256-V/q8Xw5F9I0kB7NccxGSq8iWN2QR/n5LuDb/oD04+Q0=";
   };
-  patches = [
-    # should be included in next release
-    (fetchpatch {
-      name = "joblib-1.2.0-compat.patch";
-      url = "https://github.com/scikit-learn-contrib/hdbscan/commit/d829c639923f6866e1917e46ddbde45b513913f3.patch";
-      excludes = [
-        "docs/basic_hdbscan.rst"
-        "docs/how_hdbscan_works.rst"
-      ];
-      hash = "sha256-t0D4OsHEcMwmBZM8Mk1N0uAKi6ra+TOzEks9/efsvWI=";
-    })
-  ];
 
   pythonRemoveDeps = [ "cython" ];
   nativeBuildInputs = [ pythonRelaxDepsHook cython ];