mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
pythonPackages.qrcode: 6.0 -> 6.1
This update fixes checks with python 3
This commit is contained in:
parent
626233eee6
commit
4fc689635a
1 changed files with 2 additions and 3 deletions
|
@ -10,16 +10,15 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "qrcode";
|
||||
version = "6.0";
|
||||
version = "6.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "037b0db4c93f44586e37f84c3da3f763874fcac85b2974a69a98e399ac78e1bf";
|
||||
sha256 = "505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369";
|
||||
};
|
||||
|
||||
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 a new issue