summary refs log tree commit diff
path: root/pkgs/development/python-modules/trio
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-24 21:38:10 -0700
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-27 16:26:55 +0100
commit87069f0267b1fab6601a2df401ed1d0dedc90980 (patch)
tree03ab1b4e4b0b7e81e85226881ff6c16fead106ba /pkgs/development/python-modules/trio
parentb3b4c5b12d928869eb18e7ee6161aa9a4977649b (diff)
downloadnixpkgs-87069f0267b1fab6601a2df401ed1d0dedc90980.tar
nixpkgs-87069f0267b1fab6601a2df401ed1d0dedc90980.tar.gz
nixpkgs-87069f0267b1fab6601a2df401ed1d0dedc90980.tar.bz2
nixpkgs-87069f0267b1fab6601a2df401ed1d0dedc90980.tar.lz
nixpkgs-87069f0267b1fab6601a2df401ed1d0dedc90980.tar.xz
nixpkgs-87069f0267b1fab6601a2df401ed1d0dedc90980.tar.zst
nixpkgs-87069f0267b1fab6601a2df401ed1d0dedc90980.zip
pythonPackages.trio: fix tests
Diffstat (limited to 'pkgs/development/python-modules/trio')
-rw-r--r--pkgs/development/python-modules/trio/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/trio/default.nix b/pkgs/development/python-modules/trio/default.nix
index b21157ec948..2c64e12e904 100644
--- a/pkgs/development/python-modules/trio/default.nix
+++ b/pkgs/development/python-modules/trio/default.nix
@@ -13,6 +13,7 @@
 , jedi
 , pylint
 , astor
+, yapf
 }:
 
 buildPythonPackage rec {
@@ -25,7 +26,7 @@ buildPythonPackage rec {
     sha256 = "0wnnrs36arvimrfgrlbpjw3nx7lppx43yvk2b380ivv69h52i6hl";
   };
 
-  checkInputs = [ astor pytest pyopenssl trustme jedi pylint ];
+  checkInputs = [ astor pytest pyopenssl trustme jedi pylint yapf ];
   # It appears that the build sandbox doesn't include /etc/services, and these tests try to use it.
   checkPhase = ''
     HOME="$(mktemp -d)" py.test -k 'not test_getnameinfo and not test_SocketType_resolve and not test_getprotobyname and not test_waitpid'