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

python311Packages.xkcdpass: 1.19.8 -> 1.19.9
This commit is contained in:
Fabian Affolter 2024-04-02 09:46:18 +02:00 committed by GitHub
commit 1095de3415
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 4 deletions

View File

@ -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";
};
}