python3Packages.amazon-ion: 0.9.2 -> 0.9.3

This commit is contained in:
Martin Weinelt 2022-09-18 03:49:16 +02:00 committed by Sandro Jäckel
parent 5166c6f285
commit bfb51b91f1
No known key found for this signature in database
GPG key ID: B1763F8651144063

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"
];