python313Packages.pynacl: fix sphinx 8 compat

This commit is contained in:
Martin Weinelt
2025-01-27 10:54:21 +01:00
parent 338783ee64
commit 83ee3fdab5
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
fetchpatch2,
pytestCheckHook,
sphinxHook,
pythonOlder,
@@ -27,6 +28,14 @@ buildPythonPackage rec {
sha256 = "8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba";
};
patches = [
(fetchpatch2 {
# sphinx 8 compat
url = "https://github.com/pyca/pynacl/commit/81943b3c61b9cc731ae0f2e87b7a91e42fbc8fa1.patch";
hash = "sha256-iO3pBqGW2zZE8lG8khpPjqJso9/rmFbdnwCcBs8iFeI=";
})
];
nativeBuildInputs = [ sphinxHook ];
buildInputs = [ libsodium ];