Merge pull request #20470 from Mic92/qrcode

pythonPackages.qrcode: 5.1 -> 5.3
This commit is contained in:
Jörg Thalheim 2016-11-16 16:34:15 +01:00 committed by GitHub
commit 178bd65e0f

View File

@ -25051,17 +25051,13 @@ in {
qrcode = buildPythonPackage rec {
name = "qrcode-${version}";
version = "5.1";
version = "5.3";
src = pkgs.fetchurl {
url = "mirror://pypi/q/qrcode/${name}.tar.gz";
sha256 = "0skzrvhjnnacrz52jml4i050vdx5lfcd3np172srxjaghdgfxg9k";
sha256 = "0kljfrfq0c2rmxf8am57333ia41kd0snbm2rnqbdy816hgpcq5a1";
};
# Errors in several tests:
# TypeError: must be str, not bytes
disabled = isPy3k;
propagatedBuildInputs = with self; [ six pillow ];
meta = {