about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-01-01 16:35:26 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-01-01 16:35:26 +0100
commit33d1236900e004572b30107d7fea97a223baa3f5 (patch)
treec4db794db869cc1a763bac914bc6728aa550cd8e /pkgs/development/python-modules
parent24d3457606528b98aa326dcf61555d33c9435f9c (diff)
downloadnixlib-33d1236900e004572b30107d7fea97a223baa3f5.tar
nixlib-33d1236900e004572b30107d7fea97a223baa3f5.tar.gz
nixlib-33d1236900e004572b30107d7fea97a223baa3f5.tar.bz2
nixlib-33d1236900e004572b30107d7fea97a223baa3f5.tar.lz
nixlib-33d1236900e004572b30107d7fea97a223baa3f5.tar.xz
nixlib-33d1236900e004572b30107d7fea97a223baa3f5.tar.zst
nixlib-33d1236900e004572b30107d7fea97a223baa3f5.zip
python.pkgs.blaze: 0.11.0 -> 0.11.3
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/blaze/default.nix12
1 files changed, 3 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/blaze/default.nix b/pkgs/development/python-modules/blaze/default.nix
index 017b85cacc7c..74e327fd3423 100644
--- a/pkgs/development/python-modules/blaze/default.nix
+++ b/pkgs/development/python-modules/blaze/default.nix
@@ -25,12 +25,11 @@
 
 buildPythonPackage rec {
   pname = "blaze";
-  version = "0.11.0";
-  name = "${pname}-${version}";
+  version = "0.11.3";
 
   src = fetchurl {
     url = "https://github.com/blaze/blaze/archive/${version}.tar.gz";
-    sha256 = "07zrrxkmdqk84xvdmp29859zcfzlpx5pz6g62l28nqp6n6a7yq9a";
+    sha256 = "075gqc9d7g284z4nfwv5zbq99ln22w25l4lcndjg3v10kmsjadww";
   };
 
   checkInputs = [ pytest ];
@@ -56,13 +55,8 @@ buildPythonPackage rec {
     toolz
   ];
 
-  # Failing test
-  # ERROR collecting blaze/tests/test_interactive.py
-  # E   networkx.exception.NetworkXNoPath: node <class 'list'> not
-  # reachable from <class 'dask.array.core.Array'>
-  doCheck = false;
-
   checkPhase = ''
+    rm pytest.ini # Not interested in coverage
     py.test blaze/tests
   '';