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