nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.qrcode: 8.0 -> 8.2 (#403126)

authored by

Ben Siraphob and committed by
GitHub
51b28085 754635e8

+10 -8
+10 -8
pkgs/development/python-modules/qrcode/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - fetchPypi, 4 + fetchFromGitHub, 5 5 pythonAtLeast, 6 6 7 7 # build-system ··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "qrcode"; 23 - version = "8.0"; 23 + version = "8.2"; 24 24 pyproject = true; 25 25 26 - src = fetchPypi { 27 - inherit pname version; 28 - hash = "sha256-AlzisVD3/kKW0Rbum61FWmZDq09ufc5UFhOkdYy840c="; 26 + src = fetchFromGitHub { 27 + owner = "lincolnloop"; 28 + repo = "python-qrcode"; 29 + tag = "v${version}"; 30 + hash = "sha256-qLIYUFnBJQGidnfC0bQAkO/aUmT94uXFMeMhnUgUnfQ="; 29 31 }; 30 32 31 33 build-system = [ poetry-core ]; ··· 58 56 "test_piped" 59 57 ]; 60 58 61 - meta = with lib; { 59 + meta = { 62 60 description = "Python QR Code image generator"; 63 61 mainProgram = "qr"; 64 62 homepage = "https://github.com/lincolnloop/python-qrcode"; 65 63 changelog = "https://github.com/lincolnloop/python-qrcode/blob/v${version}/CHANGES.rst"; 66 - license = licenses.bsd3; 67 - maintainers = [ ]; 64 + license = lib.licenses.bsd3; 65 + maintainers = with lib.maintainers; [ attila ]; 68 66 }; 69 67 }