python3Packages.diceware: expose as library

This commit is contained in:
Martin Weinelt 2020-06-22 20:23:29 +02:00 committed by Jon
parent 3c3840ecd6
commit 48faedc336
3 changed files with 8 additions and 6 deletions

View file

@ -1,10 +1,10 @@
{ lib
, python3Packages
{ lib, buildPythonPackage, fetchPypi
, pytestrunner
, setuptools
, coverage, pytest
}:
with python3Packages;
buildPythonApplication rec {
buildPythonPackage rec {
pname = "diceware";
version = "0.9.6";

View file

@ -26779,7 +26779,7 @@ in
simplehttp2server = callPackage ../servers/simplehttp2server { };
diceware = callPackage ../tools/security/diceware { };
diceware = with python3Packages; toPythonApplication diceware;
xml2rfc = with python3Packages; toPythonApplication xml2rfc;

View file

@ -645,6 +645,8 @@ in {
dkimpy = callPackage ../development/python-modules/dkimpy { };
diceware = callPackage ../development/python-modules/diceware { };
dictionaries = callPackage ../development/python-modules/dictionaries { };
diff_cover = callPackage ../development/python-modules/diff_cover { };