pypy310Packages.sure: enable and fix tests (#379089)

This commit is contained in:
Arne Keller
2025-03-28 09:17:16 +01:00
committed by GitHub
@@ -14,8 +14,6 @@ buildPythonPackage rec {
version = "2.0.1";
pyproject = true;
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
hash = "sha256-yPxvq8Dn9phO6ruUJUDkVkblvvC7mf5Z4C2mNOTUuco=";
@@ -43,6 +41,12 @@ buildPythonPackage rec {
"tests/test_old_api.py" # require nose
];
disabledTests = lib.optionals (isPyPy) [
# test extension of 'dict' object is broken
"test_should_compare_dict_with_non_orderable_key_types"
"test_should_compare_dict_with_enum_keys"
];
pythonImportsCheck = [ "sure" ];
meta = {