pypy310Packages.sure: enable and fix tests

This commit is contained in:
FliegendeWurst
2025-02-03 13:41:55 +01:00
parent 2ebc3e2912
commit 3ca99a8532
@@ -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 = {