pythonPackages.qrcode: disable tests with Python 3
They fail since qrcode 6.0: https://hydra.nixos.org/job/nixpkgs/trunk/python37Packages.qrcode.x86_64-linux Upstream issue: https://github.com/lincolnloop/python-qrcode/issues/163
This commit is contained in:
parent
2102ff090d
commit
483b87ba09
@ -1,5 +1,6 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
|
, isPy27
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, six
|
, six
|
||||||
, pillow
|
, pillow
|
||||||
@ -18,6 +19,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [ six pillow pymaging_png ];
|
propagatedBuildInputs = [ six pillow pymaging_png ];
|
||||||
checkInputs = [ mock ];
|
checkInputs = [ mock ];
|
||||||
|
doCheck = isPy27; # https://github.com/lincolnloop/python-qrcode/issues/163
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Quick Response code generation for Python";
|
description = "Quick Response code generation for Python";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user