python3Packages.diceware: expose as library
This commit is contained in:
parent
3c3840ecd6
commit
48faedc336
3 changed files with 8 additions and 6 deletions
|
@ -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";
|
||||
|
|
@ -26779,7 +26779,7 @@ in
|
|||
|
||||
simplehttp2server = callPackage ../servers/simplehttp2server { };
|
||||
|
||||
diceware = callPackage ../tools/security/diceware { };
|
||||
diceware = with python3Packages; toPythonApplication diceware;
|
||||
|
||||
xml2rfc = with python3Packages; toPythonApplication xml2rfc;
|
||||
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue