1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "xkcdpass";
8 version = "1.17.2";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "ae7ad57c0287cc41c8c9f164b59296463f2e009d4b7aed382160cb40dfb4d91b";
13 };
14
15 # No tests included
16 # https://github.com/redacted/XKCD-password-generator/issues/32
17 doCheck = false;
18
19 meta = with stdenv.lib; {
20 homepage = https://pypi.python.org/pypi/xkcdpass/;
21 description = "Generate secure multiword passwords/passphrases, inspired by XKCD";
22 license = licenses.bsd3;
23 };
24
25}