lol

python310Packages.typish: disable failing test on Python 3.11

+6
+6
pkgs/development/python-modules/typish/default.nix
··· 3 , fetchFromGitHub 4 , numpy 5 , pytestCheckHook 6 , pythonOlder 7 }: 8 ··· 29 # Requires a very old version of nptyping 30 # which has a circular dependency on typish 31 "tests/functions/test_instance_of.py" 32 ]; 33 34 pythonImportsCheck = [
··· 3 , fetchFromGitHub 4 , numpy 5 , pytestCheckHook 6 + , pythonAtLeast 7 , pythonOlder 8 }: 9 ··· 30 # Requires a very old version of nptyping 31 # which has a circular dependency on typish 32 "tests/functions/test_instance_of.py" 33 + ]; 34 + 35 + disabledTests = lib.optionals (pythonAtLeast "3.11") [ 36 + # https://github.com/ramonhagenaars/typish/issues/32 37 + "test_get_origin" 38 ]; 39 40 pythonImportsCheck = [