Unverified Commit 1095de34 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #300811 from r-ryantm/auto-update/python311Packages.xkcdpass

python311Packages.xkcdpass: 1.19.8 -> 1.19.9
parents 756da4a3 6619849f
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -5,24 +5,29 @@
, pytestCheckHook
, pythonAtLeast
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
  pname = "xkcdpass";
  version = "1.19.8";
  format = "setuptools";
  version = "1.19.9";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-MK//Q5m4PeNioRsmxHaMbN2x7a4SkgVy0xkxuvnUufo=";
    hash = "sha256-qU+HG9qHBmjlxl64QpbpOWADYt8swDa5HFyjgVvSktc=";
  };

  nativeBuildInputs = [
    installShellFiles
  ];

  build-system = [
    setuptools
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];
@@ -43,9 +48,9 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Generate secure multiword passwords/passphrases, inspired by XKCD";
    mainProgram = "xkcdpass";
    homepage = "https://github.com/redacted/XKCD-password-generator";
    license = licenses.bsd3;
    maintainers = with maintainers; [ peterhoeg ];
    mainProgram = "xkcdpass";
  };
}