diff options
author | Robert Schütz <nix@dotlambda.de> | 2022-05-03 14:07:00 -0700 |
---|---|---|
committer | Robert Schütz <nix@dotlambda.de> | 2022-05-08 20:32:14 +0000 |
commit | a2675e7e293fe53d9ab3b0ac47b8814cf2c2adcb (patch) | |
tree | 130b7a21cc647c9fb49e5ff656664d569eeb71ca /pkgs/tools | |
parent | c07476f4c596443a6d29d430526c0c510858a5fe (diff) |
python3Packages.twisted: use extras-require
Diffstat (limited to 'pkgs/tools')
-rw-r--r-- | pkgs/tools/networking/p2p/tahoe-lafs/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix index b0f4cd1f788a4..938bfa1dcd610 100644 --- a/pkgs/tools/networking/p2p/tahoe-lafs/default.nix +++ b/pkgs/tools/networking/p2p/tahoe-lafs/default.nix @@ -60,7 +60,8 @@ python3Packages.buildPythonApplication rec { html5lib magic-wormhole netifaces pyasn1 pycrypto pyutil pyyaml recommonmark service-identity simplejson sphinx_rtd_theme testtools treq twisted zfec zope_interface - ]; + ] ++ twisted.extras-require.tls + ++ twisted.extras-require.conch; checkInputs = with python3Packages; [ mock hypothesis twisted ]; |