pythonPackages.qrcode: 5.1 -> 5.3

works with python3 now
This commit is contained in:
Jörg Thalheim 2016-11-16 16:23:54 +01:00
parent 8ef3eaeb4e
commit e237791fd4
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -25126,17 +25126,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 = {