Merge pull request #295146 from Stunkymonkey/python-pyqrcode-normalize

This commit is contained in:
Sandro 2024-03-13 14:07:24 +01:00 committed by GitHub
commit fc603bd7bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -1,11 +1,12 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "PyQRCode";
pname = "pyqrcode";
version = "1.2.1";
src = fetchPypi {
inherit pname version;
pname = "PyQRCode";
inherit version;
sha256 = "fdbf7634733e56b72e27f9bce46e4550b75a3a2c420414035cae9d9d26b234d5";
};