typeguard: fix tests
Broken by 9993c38682
Traceback:
tests/test_typeguard_py36.py:7: in <module>
from typing_extensions import Literal
E ModuleNotFoundError: No module named 'typing_extensions'
Resolved by adding typing-extensions to checkInputs
This commit is contained in:
parent
e7cc52a114
commit
40fb898673
1 changed files with 2 additions and 1 deletions
|
@ -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 .
|
||||
|
|
Loading…
Reference in a new issue