python310Packages.orjson: 3.7.8 -> 3.7.12

This update fixes tests that were broken with the update to version
2022b of tzdata.

https://github.com/ijl/orjson/blob/master/CHANGELOG.md#3712---2022-08-14
This commit is contained in:
Theodore Ni
2022-08-13 22:56:39 -07:00
parent c07f7e3cec
commit b2db8358f9

View File

@@ -16,20 +16,20 @@
buildPythonPackage rec {
pname = "orjson";
version = "3.7.8";
version = "3.7.12";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ijl";
repo = pname;
rev = version;
hash = "sha256-K/hLNzwwEeGN6S33Xkfh+ocDHmTmh6yZYcN4vxaAvoQ=";
hash = "sha256-ImFISSn4FZqUgxQhVbyyTsC1xNpBoJhb/+BvvQkv5gE=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-kwZg1bC1O6XBI5HBgzahph/0k/RUKEkFIQMMuA1xe4w=";
hash = "sha256-uQJtATSCYSdVBeQocmiGapeAIYL+iYBGLgL8YjUn/3U=";
};
format = "pyproject";