50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
installShellFiles,
|
||
|
pytestCheckHook,
|
||
|
pythonAtLeast,
|
||
|
pythonOlder,
|
||
|
setuptools,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "xkcdpass";
|
||
|
version = "1.19.9";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-qU+HG9qHBmjlxl64QpbpOWADYt8swDa5HFyjgVvSktc=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ installShellFiles ];
|
||
|
|
||
|
build-system = [ setuptools ];
|
||
|
|
||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||
|
|
||
|
pythonImportsCheck = [ "xkcdpass" ];
|
||
|
|
||
|
disabledTests = lib.optionals (pythonAtLeast "3.10") [
|
||
|
# https://github.com/redacted/XKCD-password-generator/issues/138
|
||
|
"test_entropy_printout_valid_input"
|
||
|
];
|
||
|
|
||
|
postInstall = ''
|
||
|
installManPage *.?
|
||
|
install -Dm444 -t $out/share/doc/${pname} README*
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Generate secure multiword passwords/passphrases, inspired by XKCD";
|
||
|
homepage = "https://github.com/redacted/XKCD-password-generator";
|
||
|
license = licenses.bsd3;
|
||
|
maintainers = with maintainers; [ peterhoeg ];
|
||
|
mainProgram = "xkcdpass";
|
||
|
};
|
||
|
}
|