Unverified Commit 51b28085 authored by Ben Siraphob's avatar Ben Siraphob Committed by GitHub
Browse files

python3Packages.qrcode: 8.0 -> 8.2 (#403126)

parents 754635e8 a8206f31
Loading
Loading
Loading
Loading
+10 −8
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  fetchFromGitHub,
  pythonAtLeast,

  # build-system
@@ -20,12 +20,14 @@

buildPythonPackage rec {
  pname = "qrcode";
  version = "8.0";
  version = "8.2";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-AlzisVD3/kKW0Rbum61FWmZDq09ufc5UFhOkdYy840c=";
  src = fetchFromGitHub {
    owner = "lincolnloop";
    repo = "python-qrcode";
    tag = "v${version}";
    hash = "sha256-qLIYUFnBJQGidnfC0bQAkO/aUmT94uXFMeMhnUgUnfQ=";
  };

  build-system = [ poetry-core ];
@@ -56,12 +58,12 @@ buildPythonPackage rec {
    "test_piped"
  ];

  meta = with lib; {
  meta = {
    description = "Python QR Code image generator";
    mainProgram = "qr";
    homepage = "https://github.com/lincolnloop/python-qrcode";
    changelog = "https://github.com/lincolnloop/python-qrcode/blob/v${version}/CHANGES.rst";
    license = licenses.bsd3;
    maintainers = [ ];
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ attila ];
  };
}