nixpkgs/pkgs/development/python-modules/diceware/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
803 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi
, pytest-runner
, setuptools
, coverage, pytest
2018-02-25 17:42:08 +00:00
}:
buildPythonPackage rec {
2018-02-25 17:42:08 +00:00
pname = "diceware";
2022-02-16 04:15:29 +00:00
version = "0.10";
2018-02-25 17:42:08 +00:00
src = fetchPypi {
inherit pname version;
2022-02-16 04:15:29 +00:00
sha256 = "sha256-srTMm1n1aNLvUb/fn34a+UHSX7j1wl8XAZHburzpZWk=";
2018-02-25 17:42:08 +00:00
};
nativeBuildInputs = [ pytest-runner ];
2018-02-25 17:42:08 +00:00
propagatedBuildInputs = [ setuptools ];
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";
2018-02-25 17:42:08 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ asymmetric ];
};
}