about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rednose
diff options
context:
space:
mode:
authornixbitcoin <nixbitcoin@i2pmail.org>2019-05-02 20:10:52 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-05-04 08:06:32 +0200
commitebf4a5a600512aeca322f7c62137483b9ecf116d (patch)
tree35f4876b0a6574f6c7471dcb3e9080978d6068f0 /pkgs/development/python-modules/rednose
parente90a6f0b423eac7e7c4b6156779c2c96d5281ad2 (diff)
Disable rednose test suite
Diffstat (limited to 'pkgs/development/python-modules/rednose')
-rw-r--r--pkgs/development/python-modules/rednose/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/rednose/default.nix b/pkgs/development/python-modules/rednose/default.nix
index 8257ca87dd99f..fa142cf872367 100644
--- a/pkgs/development/python-modules/rednose/default.nix
+++ b/pkgs/development/python-modules/rednose/default.nix
@@ -13,9 +13,9 @@ buildPythonPackage rec {
     substituteInPlace setup.py --replace "six==1.10.0" "six>=1.10.0"
   '';
 
-  # Do not test on Python 2 darwin because the tests suite gets stuck
-  # https://github.com/JBKahn/rednose/issues/23
-  doCheck = !(stdenv.isDarwin && isPy27);
+  # Do not test on Python 2 because the tests suite gets stuck
+  # https://github.com/NixOS/nixpkgs/issues/60786
+  doCheck = !(isPy27);
 
   checkInputs = [ six ];
   propagatedBuildInputs = [ nose colorama termstyle ];