about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2023-04-24 16:34:21 +0300
committerGitHub <noreply@github.com>2023-04-24 16:34:21 +0300
commitf3fdd1cce55a1fd36737e6c30e696ae2eabfd8c6 (patch)
tree035149efe278461f6d2e67e2fe48675331b028f6
parent0bed3720b0dc815ca8affa1f027466b9badbae0f (diff)
parent2493aa0d131a792606c0135d67933aae8df94636 (diff)
Merge pull request #226121 from amjoseph-nixpkgs/pr/fixcross/beautifulsoup4
-rw-r--r--pkgs/top-level/python-packages.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 59ba133e117d4..34f90f83cc81b 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -1242,7 +1242,9 @@ self: super: with self; {
 
   beartype = callPackage ../development/python-modules/beartype { };
 
-  beautifulsoup4 = callPackage ../development/python-modules/beautifulsoup4 { };
+  beautifulsoup4 = callPackage ../development/python-modules/beautifulsoup4 {
+    inherit (python.pythonForBuild.pkgs) sphinxHook; # hook splicing broken since #194205
+  };
 
   beautifultable = callPackage ../development/python-modules/beautifultable { };