python3Packages.correctionlib: patch vendored rapidjson

This commit is contained in:
Dmitry Kalinkin
2025-01-08 18:19:10 -05:00
parent a4ba9bc650
commit 7dfdc35260
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
# build-system
cmake,
@@ -37,6 +38,16 @@ buildPythonPackage rec {
fetchSubmodules = true;
};
patches = [
# fix https://github.com/Tencent/rapidjson/issues/2277
(fetchpatch {
url = "https://github.com/Tencent/rapidjson/pull/719.diff";
hash = "sha256-xarSfi9o73KoJo0ijT0G8fyTSYVuY0+9rLEtfUwas0Q=";
extraPrefix = "rapidjson/";
stripLen = 1;
})
];
build-system = [
cmake
scikit-build