python310Packages.parso: 0.8.1 -> 0.8.3, disable 3.10 incompatible tests

This commit is contained in:
Jonathan Ringer 2022-01-04 22:47:07 -08:00
parent 3709c129ef
commit 58d0c2baf0
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -2,31 +2,28 @@
, buildPythonPackage
, fetchPypi
, fetchpatch
, pythonAtLeast
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "parso";
version = "0.8.1";
version = "0.8.3";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "8519430ad07087d4c997fda3a7918f7cfa27cb58972a8c89c2a0295a1c940e9e";
sha256 = "sha256-jAe+KQu1nwNYiRWSHinopQACrK8s3F+g4BFPkXCfr6A=";
};
patches = [
# Fix the flaky test due to slow moving time on Apple Silicon chips.
# Remove when https://github.com/davidhalter/parso/pull/177 is in the next release.
(fetchpatch {
url = "https://github.com/davidhalter/parso/pull/177/commits/2799a7a3c2cf87fdc2d0c19a0890acea425091ce.patch";
sha256 = "sha256-A5EQly1wR/7lo+L8Pp0UPSUIhC0WcblXEWQNvRMlZYA=";
})
];
checkInputs = [ pytestCheckHook ];
disabledTests = lib.optionals (pythonAtLeast "3.10") [
# python changed exception message format in 3.10, 3.10 not yet supported
"test_python_exception_matches"
];
meta = with lib; {
description = "A Python Parser";
homepage = "https://parso.readthedocs.io/en/latest/";