Try merging the two overrides.

This commit is contained in:
Itamar Turner-Trauring 2023-06-05 11:27:23 -04:00
parent 01bc35f129
commit 894cb46304
2 changed files with 3 additions and 4 deletions

View File

@ -6,4 +6,7 @@ pyopenssl.overrideAttrs (old: rec {
inherit pname version;
sha256 = "sha256-1b4bkcpzhmablf592g21rq3l8apbhklp6wcwlvgfflm4algr6vr7";
};
# Building the docs requires sphinx which brings in a dependency on babel,
# the test suite of which fails.
dontBuildDocs = isPyPy;
})

View File

@ -66,10 +66,6 @@ in {
# a5f8184fb816a4fd5ae87136838c9981e0d22c67.
six = onPyPy dontCheck super.six;
# Building the docs requires sphinx which brings in a dependency on babel,
# the test suite of which fails.
pyopenssl = onPyPy (dontBuildDocs { sphinx-rtd-theme = null; }) super.pyopenssl;
# Likewise for beautifulsoup4.
beautifulsoup4 = onPyPy (dontBuildDocs {}) super.beautifulsoup4;