Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 25 lines 565 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "xkcdpass"; 8 version = "1.17.3"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "95cf3fd41130606ba64ec7edb9efac7c5d61efe21abab51a2c21ccbbebc48bb6"; 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}