evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / pyqrcode / default.nix
blobc624964eecf3ea66a66709addf230a9ee9db9a82
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "pyqrcode";
9   version = "1.2.1";
11   src = fetchPypi {
12     pname = "PyQRCode";
13     inherit version;
14     sha256 = "fdbf7634733e56b72e27f9bce46e4550b75a3a2c420414035cae9d9d26b234d5";
15   };
17   # No tests in PyPI tarball
18   doCheck = false;
20   meta = with lib; {
21     description = "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   };