1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "PyQRCode"; 5 version = "1.2.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "fdbf7634733e56b72e27f9bce46e4550b75a3a2c420414035cae9d9d26b234d5"; 10 }; 11 12 # No tests in PyPI tarball 13 doCheck = false; 14 15 meta = with lib; { 16 description = "A QR code generator written purely in Python with SVG, EPS, PNG and terminal output"; 17 homepage = "https://github.com/mnooner256/pyqrcode"; 18 license = licenses.bsd3; 19 maintainers = with maintainers; [ dotlambda ]; 20 }; 21}