depot/third_party/nixpkgs/pkgs/development/python-modules/pyqrcode/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

26 lines
586 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pyqrcode";
version = "1.2.1";
src = fetchPypi {
pname = "PyQRCode";
inherit version;
sha256 = "fdbf7634733e56b72e27f9bce46e4550b75a3a2c420414035cae9d9d26b234d5";
};
# No tests in PyPI tarball
doCheck = false;
meta = with lib; {
description = "QR code generator written purely in Python with SVG, EPS, PNG and terminal output";
homepage = "https://github.com/mnooner256/pyqrcode";
license = licenses.bsd3;
maintainers = with maintainers; [ dotlambda ];
};
}