about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-05-10 20:41:49 +0200
committerTimo Kaufmann <timokau@zoho.com>2020-05-10 20:51:31 +0200
commitcd45ab076dcd3168644b67a88bd85584619aa187 (patch)
treec5197cc1726bff5f1ff48d2919f4f0720e9db154
parent47548caf3b31dc90df997d75c57a1c2ad829bf01 (diff)
downloadnixlib-cd45ab076dcd3168644b67a88bd85584619aa187.tar
nixlib-cd45ab076dcd3168644b67a88bd85584619aa187.tar.gz
nixlib-cd45ab076dcd3168644b67a88bd85584619aa187.tar.bz2
nixlib-cd45ab076dcd3168644b67a88bd85584619aa187.tar.lz
nixlib-cd45ab076dcd3168644b67a88bd85584619aa187.tar.xz
nixlib-cd45ab076dcd3168644b67a88bd85584619aa187.tar.zst
nixlib-cd45ab076dcd3168644b67a88bd85584619aa187.zip
python.pkgs.scikitlearn: 0.21.3 -> 0.22.2.post1
-rw-r--r--pkgs/development/python-modules/scikitlearn/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/scikitlearn/default.nix b/pkgs/development/python-modules/scikitlearn/default.nix
index a770e3132430..454e631634bf 100644
--- a/pkgs/development/python-modules/scikitlearn/default.nix
+++ b/pkgs/development/python-modules/scikitlearn/default.nix
@@ -12,13 +12,13 @@
 
 buildPythonPackage rec {
   pname = "scikit-learn";
-  version = "0.21.3";
+  version = "0.22.2.post1";
   # UnboundLocalError: local variable 'message' referenced before assignment
   disabled = stdenv.isi686;  # https://github.com/scikit-learn/scikit-learn/issues/5534
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "eb9b8ebf59eddd8b96366428238ab27d05a19e89c5516ce294abc35cea75d003";
+    sha256 = "0z81n13dxvd6qwq5lsnzw2machmxbirhdhr73v90fi55ic9qslsp";
   };
 
   buildInputs = [
@@ -41,15 +41,6 @@ buildPythonPackage rec {
   ];
   checkInputs = [ pytest ];
 
-  patches = [
-    # Fixes tests by changing threshold of a test-case that broke
-    # with numpy versions >= 1.17. This should be removed for versions > 0.21.2.
-	( fetchpatch {
-	  url = "https://github.com/scikit-learn/scikit-learn/commit/b730befc821caec5b984d9ff3aa7bc4bd7f4d9bb.patch";
-	  sha256 = "0z36m05mv6d494qwq0688rgwa7c4bbnm5s2rcjlrp29fwn3fy1bv";
-	})
-  ];
-
   LC_ALL="en_US.UTF-8";
 
   doCheck = !stdenv.isAarch64;