summary refs log tree commit diff
path: root/pkgs/development/python-modules/pynndescent
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-04-27 04:13:43 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-04-27 04:56:14 +0200
commit5c5f728b042f5c793d10e85e7e851e1501201aaa (patch)
tree8286c80eefd514ea355bea318aeb83025e969f22 /pkgs/development/python-modules/pynndescent
parent46a44d450e8322bf158039780b1dd07801fd5416 (diff)
downloadnixpkgs-5c5f728b042f5c793d10e85e7e851e1501201aaa.tar
nixpkgs-5c5f728b042f5c793d10e85e7e851e1501201aaa.tar.gz
nixpkgs-5c5f728b042f5c793d10e85e7e851e1501201aaa.tar.bz2
nixpkgs-5c5f728b042f5c793d10e85e7e851e1501201aaa.tar.lz
nixpkgs-5c5f728b042f5c793d10e85e7e851e1501201aaa.tar.xz
nixpkgs-5c5f728b042f5c793d10e85e7e851e1501201aaa.tar.zst
nixpkgs-5c5f728b042f5c793d10e85e7e851e1501201aaa.zip
python3Packages.pynndescent: 0.5.1 -> 0.5.2
Diffstat (limited to 'pkgs/development/python-modules/pynndescent')
-rw-r--r--pkgs/development/python-modules/pynndescent/default.nix21
1 files changed, 6 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pynndescent/default.nix b/pkgs/development/python-modules/pynndescent/default.nix
index aab8f4e743a..8cddeb8873f 100644
--- a/pkgs/development/python-modules/pynndescent/default.nix
+++ b/pkgs/development/python-modules/pynndescent/default.nix
@@ -1,7 +1,6 @@
 { lib
 , buildPythonPackage
 , fetchPypi
-, fetchpatch
 , nose
 , scikitlearn
 , scipy
@@ -12,25 +11,13 @@
 
 buildPythonPackage rec {
   pname = "pynndescent";
-  version = "0.5.1";
+  version = "0.5.2";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "74a05a54d13573a38878781d44812ac6df97d8762a56f9bb5dd87a99911820fe";
+    sha256 = "0w87c2v0li2rdbx6qfc2lb6y6bxpdy3jwfgzfs1kcr4d1chj5zfr";
   };
 
-  patches = [
-    # fixes tests, included in 0.5.2
-    (fetchpatch {
-      url = "https://github.com/lmcinnes/pynndescent/commit/ef5d8c3c3bfe976063b6621e3e0734c0c22d813b.patch";
-      sha256 = "sha256-49n3kevs3wpzd4FfZVKmNpF2o1V8pJs4KOx8zCAhR3s=";
-    })
-  ];
-
-  checkInputs = [
-    nose
-  ];
-
   propagatedBuildInputs = [
     scikitlearn
     scipy
@@ -39,6 +26,10 @@ buildPythonPackage rec {
     joblib
   ];
 
+  checkInputs = [
+    nose
+  ];
+
   checkPhase = ''
     nosetests
   '';