2018-02-25 17:42:08 +00:00
|
|
|
{ lib
|
|
|
|
, pythonPackages
|
|
|
|
, fetchpatch
|
|
|
|
}:
|
|
|
|
|
|
|
|
with pythonPackages;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "diceware";
|
2018-02-28 10:01:15 +00:00
|
|
|
version = "0.9.4";
|
2018-02-25 17:42:08 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-02-28 10:01:15 +00:00
|
|
|
sha256 = "0855n4dh16ws1dhw1ixxwk3wx7qr45xff7pn32pjg58p4z4cx168";
|
2018-02-25 17:42:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pytestrunner ];
|
|
|
|
|
2018-02-28 10:01:15 +00:00
|
|
|
checkInputs = [ coverage pytest ];
|
2018-02-25 17:42:08 +00:00
|
|
|
|
|
|
|
# see https://github.com/ulif/diceware/commit/a7d844df76cd4b95a717f21ef5aa6167477b6733
|
|
|
|
checkPhase = ''
|
|
|
|
py.test -m 'not packaging'
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Generates passphrases by concatenating words randomly picked from wordlists";
|
|
|
|
homepage = https://github.com/ulif/diceware;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ asymmetric ];
|
|
|
|
};
|
|
|
|
}
|