From ee9c3dec08a8d49001b1adcc7c3a86a624253588 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliv=C3=A9r=20Falvai?= Date: Sat, 31 Jan 2026 11:38:20 +0100 Subject: [PATCH] python3Packages.moviepy: remove unnecessary dependencies --- .../python-modules/moviepy/default.nix | 20 +------------------ 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/pkgs/development/python-modules/moviepy/default.nix b/pkgs/development/python-modules/moviepy/default.nix index 1c1977195699..419cec28e2e5 100644 --- a/pkgs/development/python-modules/moviepy/default.nix +++ b/pkgs/development/python-modules/moviepy/default.nix @@ -17,13 +17,6 @@ requests, tqdm, - # optional-dependencies - matplotlib, - scikit-image, - scikit-learn, - scipy, - yt-dlp, - # tests pytest-timeout, pytestCheckHook, @@ -56,21 +49,10 @@ buildPythonPackage rec { tqdm ]; - optional-dependencies = { - optionals = [ - matplotlib - scikit-image - scikit-learn - scipy - yt-dlp - ]; - }; - nativeCheckInputs = [ pytest-timeout pytestCheckHook - ] - ++ lib.concatAttrValues optional-dependencies; + ]; # See https://github.com/NixOS/nixpkgs/issues/381908 and https://github.com/NixOS/nixpkgs/issues/385450. pytestFlags = [ "--timeout=600" ];