lol

python310Packages.nptyping: disable typeguard tests due to API incompatibility from typeguard bump

+2 -2
+2 -2
pkgs/development/python-modules/nptyping/default.nix
··· 8 , numpy 9 , pandas 10 , feedparser 11 - , typeguard 12 }: 13 14 buildPythonPackage rec { ··· 35 invoke 36 pandas 37 pytestCheckHook 38 - typeguard 39 ]; 40 41 disabledTests = [ ··· 49 # can't find mypy stubs for pandas: 50 "tests/test_mypy.py" 51 "tests/pandas_/test_mypy_dataframe.py" 52 # tries to build wheel of package, broken/unnecessary under Nix: 53 "tests/test_wheel.py" 54 ];
··· 8 , numpy 9 , pandas 10 , feedparser 11 }: 12 13 buildPythonPackage rec { ··· 34 invoke 35 pandas 36 pytestCheckHook 37 ]; 38 39 disabledTests = [ ··· 47 # can't find mypy stubs for pandas: 48 "tests/test_mypy.py" 49 "tests/pandas_/test_mypy_dataframe.py" 50 + # typeguard release broke nptyping compatibility: 51 + "tests/test_typeguard.py" 52 # tries to build wheel of package, broken/unnecessary under Nix: 53 "tests/test_wheel.py" 54 ];