pythonPackages.multidict: disable tests for 3.8

This commit is contained in:
Frederik Rietdijk 2019-10-17 09:19:21 +02:00
parent 5725366c88
commit 8a37580fc7

View file

@ -3,6 +3,7 @@
, buildPythonPackage
, pytest, pytestrunner, pytestcov
, isPy3k
, isPy38
}:
buildPythonPackage rec {
@ -17,6 +18,8 @@ buildPythonPackage rec {
checkInputs = [ pytest pytestrunner pytestcov ];
disabled = !isPy3k;
# pickle files needed for 3.8 https://github.com/aio-libs/multidict/pull/363
doCheck = !isPy38;
meta = with lib; {
description = "Multidict implementation";