From d19eea7334f0cdfabc5df95c05aa86f26fa79695 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Wed, 30 Jan 2019 18:52:27 -0500 Subject: [PATCH] pythonPackages.txaio: disable tests See discussion in https://github.com/NixOS/nixpkgs/pull/53479 Fixes #53474 --- pkgs/development/python-modules/txaio/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/txaio/default.nix b/pkgs/development/python-modules/txaio/default.nix index 2bfdbae918a1..8c0b13a984dd 100644 --- a/pkgs/development/python-modules/txaio/default.nix +++ b/pkgs/development/python-modules/txaio/default.nix @@ -17,6 +17,8 @@ buildPythonPackage rec { py.test -k "not test_sdist" ''; + doCheck = false; + meta = with stdenv.lib; { description = "Utilities to support code that runs unmodified on Twisted and asyncio."; homepage = "https://github.com/crossbario/txaio";