Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyqrcode / default.nix
blob2b0ce5193555fa88720607151cb8acd7dc938b1d
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "pyqrcode";
5   version = "1.2.1";
7   src = fetchPypi {
8     pname = "PyQRCode";
9     inherit version;
10     sha256 = "fdbf7634733e56b72e27f9bce46e4550b75a3a2c420414035cae9d9d26b234d5";
11   };
13   # No tests in PyPI tarball
14   doCheck = false;
16   meta = with lib; {
17     description = "A QR code generator written purely in Python with SVG, EPS, PNG and terminal output";
18     homepage = "https://github.com/mnooner256/pyqrcode";
19     license = licenses.bsd3;
20     maintainers = with maintainers; [ dotlambda ];
21   };