python3Packages.amazon-ion: 0.9.2 -> 0.9.3

(cherry picked from commit bfb51b91f1)

The .2 and .3 update fix recent regression during build (tests),
and the announcements for seem pretty non-breaking:
https://github.com/amzn/ion-python/releases
This commit is contained in:
Martin Weinelt
2022-09-18 03:49:16 +02:00
committed by Vladimír Čunát
parent e985822e77
commit ffe6fbbf64

View File

@@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "amazon-ion";
version = "0.9.2";
version = "0.9.3";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
repo = "ion-python";
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-BLlKxm63KsmMFajS4uJne/LPNXboOfy4uVm8HqO9Wfo=";
hash = "sha256-FLwzHcge+vLcRY4gOzrxS3kWlprCkRXX5KeGOoTJDSw=";
};
postPatch = ''
@@ -37,6 +37,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# ValueError: Exceeds the limit (4300) for integer string conversion
"test_roundtrips"
];
pythonImportsCheck = [
"amazon.ion"
];