about summary refs log tree commit diff
path: root/pkgs/applications/networking/syncplay
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-05-22 16:26:11 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-05-22 16:31:53 +0200
commit272430c82399d0a2f22b51dd0e564a8709ba6782 (patch)
tree4bc42f8b3229f50b0e2305e0c0895edb63314fb0 /pkgs/applications/networking/syncplay
parent809ffd6cd33b0020c6ac0be57bf25f3da4c17d31 (diff)
treewide: migrate python packages to optional-dependencies
This follows the term used by PEP 621.
Diffstat (limited to 'pkgs/applications/networking/syncplay')
-rw-r--r--pkgs/applications/networking/syncplay/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/syncplay/default.nix b/pkgs/applications/networking/syncplay/default.nix
index 96420ff04de1c..1e88b12c74f9d 100644
--- a/pkgs/applications/networking/syncplay/default.nix
+++ b/pkgs/applications/networking/syncplay/default.nix
@@ -14,7 +14,7 @@ buildPythonApplication rec {
   };
 
   propagatedBuildInputs = [ twisted certifi ]
-    ++ twisted.extras-require.tls
+    ++ twisted.optional-dependencies.tls
     ++ lib.optional enableGUI pyside2;
   nativeBuildInputs = lib.optionals enableGUI [ qt5.wrapQtAppsHook ];