summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2023-10-24 15:38:07 -0400
committerBen Darwin <bcdarwin@gmail.com>2023-10-24 15:38:07 -0400
commitb50c95dca4f214225dfbf22e8f6f7e618ca64ef4 (patch)
tree93b09912cf17ebd1082fb3f694f3628555b7e827 /pkgs
parentcfd369a8802d48745c7150c2a1b7cf62a6f38e75 (diff)
downloadnixpkgs-b50c95dca4f214225dfbf22e8f6f7e618ca64ef4.tar
nixpkgs-b50c95dca4f214225dfbf22e8f6f7e618ca64ef4.tar.gz
nixpkgs-b50c95dca4f214225dfbf22e8f6f7e618ca64ef4.tar.bz2
nixpkgs-b50c95dca4f214225dfbf22e8f6f7e618ca64ef4.tar.lz
nixpkgs-b50c95dca4f214225dfbf22e8f6f7e618ca64ef4.tar.xz
nixpkgs-b50c95dca4f214225dfbf22e8f6f7e618ca64ef4.tar.zst
nixpkgs-b50c95dca4f214225dfbf22e8f6f7e618ca64ef4.zip
python310Packages.nptyping: disable typeguard tests due to API incompatibility from typeguard bump
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/nptyping/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/nptyping/default.nix b/pkgs/development/python-modules/nptyping/default.nix
index ac823c2e45a..883eb00384d 100644
--- a/pkgs/development/python-modules/nptyping/default.nix
+++ b/pkgs/development/python-modules/nptyping/default.nix
@@ -8,7 +8,6 @@
 , numpy
 , pandas
 , feedparser
-, typeguard
 }:
 
 buildPythonPackage rec {
@@ -35,7 +34,6 @@ buildPythonPackage rec {
     invoke
     pandas
     pytestCheckHook
-    typeguard
   ];
 
   disabledTests = [
@@ -49,6 +47,8 @@ buildPythonPackage rec {
     # can't find mypy stubs for pandas:
     "tests/test_mypy.py"
     "tests/pandas_/test_mypy_dataframe.py"
+    # typeguard release broke nptyping compatibility:
+    "tests/test_typeguard.py"
     # tries to build wheel of package, broken/unnecessary under Nix:
     "tests/test_wheel.py"
   ];