From 20df1577c16f025219d866edd6add173bb272138 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 8 May 2025 04:17:40 +0200 Subject: [PATCH] rstcheckWithSphinx: init flavor with sphinx This is useful to get it cached and usable in downstream CI jobs. --- pkgs/top-level/all-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8bf80e166da9..98db1754b3cd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4362,6 +4362,10 @@ with pkgs; rstcheck = with python3Packages; toPythonApplication rstcheck; + rstcheckWithSphinx = rstcheck.overridePythonAttrs (oldAttrs: { + dependencies = oldAttrs.dependencies ++ oldAttrs.optional-dependencies.sphinx; + }); + rtmpdump_gnutls = rtmpdump.override { gnutlsSupport = true; opensslSupport = false;