From cb8eb4d1b2c6d2fb71c1a21ab48dfbc9e7590179 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 2 Feb 2018 15:44:44 +0100 Subject: [PATCH] pythonPackages.pytest-aiohttp: disable tests --- pkgs/development/python-modules/pytest-aiohttp/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/pytest-aiohttp/default.nix b/pkgs/development/python-modules/pytest-aiohttp/default.nix index afdc085aa9f5..7f707ebc46b6 100644 --- a/pkgs/development/python-modules/pytest-aiohttp/default.nix +++ b/pkgs/development/python-modules/pytest-aiohttp/default.nix @@ -11,6 +11,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ pytest aiohttp ]; + # There are no tests + doCheck = false; + meta = with stdenv.lib; { homepage = https://github.com/aio-libs/pytest-aiohttp/; description = "Pytest plugin for aiohttp support";