mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
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
|
||||
, buildPythonPackage
|
||||
, isPy27
|
||||
, fetchPypi
|
||||
, six
|
||||
, pillow
|
||||
@ -18,6 +19,7 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [ six pillow pymaging_png ];
|
||||
checkInputs = [ mock ];
|
||||
doCheck = isPy27; # https://github.com/lincolnloop/python-qrcode/issues/163
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Quick Response code generation for Python";
|
||||
|
Loading…
Reference in New Issue
Block a user