python3Packages.orjson: 3.11.4 -> 3.11.5

https://github.com/ijl/orjson/blob/3.11.5/CHANGELOG.md
This commit is contained in:
Martin Weinelt
2026-02-01 16:40:32 +01:00
parent bd26baf7c6
commit e5ca655b35
@@ -29,14 +29,14 @@
buildPythonPackage rec {
pname = "orjson";
version = "3.11.4";
version = "3.11.5";
pyproject = true;
src = fetchFromGitHub {
owner = "ijl";
repo = "orjson";
tag = version;
hash = "sha256-LK3Up6bAWZkou791nrA9iHlgfDLbk196iTn3CBfeyYc=";
hash = "sha256-MWNAP8p4TN5yXFtXKWCyguv3EnFpZHMG8YEIiFF1Vug=";
};
patches = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
@@ -46,7 +46,7 @@ buildPythonPackage rec {
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-TdZtbb9zR0T+0eauEgRVrDKN2eyCNfEQCJziPlKPWpI=";
hash = "sha256-sRVa1cCbZQJq4bASn7oreEKpzTvuDoMzVs/IbojQa8s=";
};
nativeBuildInputs = [