pythonPackages.multidict: disable tests for 3.8
This commit is contained in:
parent
5725366c88
commit
8a37580fc7
|
@ -3,6 +3,7 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pytest, pytestrunner, pytestcov
|
, pytest, pytestrunner, pytestcov
|
||||||
, isPy3k
|
, isPy3k
|
||||||
|
, isPy38
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -17,6 +18,8 @@ buildPythonPackage rec {
|
||||||
checkInputs = [ pytest pytestrunner pytestcov ];
|
checkInputs = [ pytest pytestrunner pytestcov ];
|
||||||
|
|
||||||
disabled = !isPy3k;
|
disabled = !isPy3k;
|
||||||
|
# pickle files needed for 3.8 https://github.com/aio-libs/multidict/pull/363
|
||||||
|
doCheck = !isPy38;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Multidict implementation";
|
description = "Multidict implementation";
|
||||||
|
|
Loading…
Reference in New Issue