aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/security/diceware/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/security/diceware/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/security/diceware/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/nixpkgs/pkgs/tools/security/diceware/default.nix b/nixpkgs/pkgs/tools/security/diceware/default.nix
deleted file mode 100644
index f32d63cfc10..00000000000
--- a/nixpkgs/pkgs/tools/security/diceware/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ lib
-, python3Packages
-}:
-
-with python3Packages;
-
-buildPythonApplication rec {
- pname = "diceware";
- version = "0.9.6";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "0klb0ysybzlh2wihvir82hgq62v0jjmlcqklwajyms7c0p529yby";
- };
-
- nativeBuildInputs = [ pytestrunner ];
-
- propagatedBuildInputs = [ setuptools ];
-
- checkInputs = [ coverage pytest ];
-
- # 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 ];
- };
-}