python.pkgs.pyqrcode: init at 1.2.1
This commit is contained in:
parent
09cced6725
commit
dc707e41e4
21
pkgs/development/python-modules/pyqrcode/default.nix
Normal file
21
pkgs/development/python-modules/pyqrcode/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "PyQRCode";
|
||||||
|
version = "1.2.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "fdbf7634733e56b72e27f9bce46e4550b75a3a2c420414035cae9d9d26b234d5";
|
||||||
|
};
|
||||||
|
|
||||||
|
# No tests in PyPI tarball
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -10403,6 +10403,8 @@ in {
|
|||||||
proj = null;
|
proj = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pyqrcode = callPackage ../development/python-modules/pyqrcode { };
|
||||||
|
|
||||||
pyrr = callPackage ../development/python-modules/pyrr { };
|
pyrr = callPackage ../development/python-modules/pyrr { };
|
||||||
|
|
||||||
pysha3 = callPackage ../development/python-modules/pysha3 { };
|
pysha3 = callPackage ../development/python-modules/pysha3 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user