about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLancelot SIX <lsix+github@lancelotsix.com>2020-06-25 10:15:42 +0100
committerGitHub <noreply@github.com>2020-06-25 10:15:42 +0100
commitec1d9c63d7487685f64a8b7fe2ea018669267b12 (patch)
tree4fe4beb8d0dfbb53e334a0f259bacd2df32ac8e1 /pkgs
parentc864a1519e1b91ece49f81e02c7636c0c76d63ca (diff)
parent40fb898673b427fbfc2c4a0ebeb821d5aa3531be (diff)
Merge pull request #91451 from callahad/typeguard-fixup
typeguard: fix tests
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/typeguard/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/typeguard/default.nix b/pkgs/development/python-modules/typeguard/default.nix
index da75b7f18dca5..7541d717e8a9e 100644
--- a/pkgs/development/python-modules/typeguard/default.nix
+++ b/pkgs/development/python-modules/typeguard/default.nix
@@ -4,6 +4,7 @@
 , stdenv
 , setuptools_scm
 , pytest
+, typing-extensions
 , glibcLocales
 }:
 
@@ -25,7 +26,7 @@ buildPythonPackage rec {
     substituteInPlace setup.cfg --replace " --cov" ""
   '';
 
-  checkInputs = [ pytest ];
+  checkInputs = [ pytest typing-extensions ];
 
   checkPhase = ''
     py.test .