pythonPackages.effect: fix python3.7 build (#51022)
This commit is contained in:
parent
5a2317d331
commit
21f6996529
@ -1,5 +1,6 @@
|
|||||||
{ buildPythonPackage
|
{ buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, isPy37
|
||||||
, lib
|
, lib
|
||||||
, six
|
, six
|
||||||
, attrs
|
, attrs
|
||||||
@ -25,6 +26,8 @@ buildPythonPackage rec {
|
|||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
pytest .
|
pytest .
|
||||||
'';
|
'';
|
||||||
|
# Tests fails on python3.7 https://github.com/python-effect/effect/issues/78
|
||||||
|
doCheck = !isPy37;
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Pure effects for Python";
|
description = "Pure effects for Python";
|
||||||
homepage = https://github.com/python-effect/effect;
|
homepage = https://github.com/python-effect/effect;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user