summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-server-fixtures
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-07 14:56:42 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-08 11:36:06 +0200
commita3688867c571e4ea8b5a1100c84bb37e800437eb (patch)
tree5e4ffb23e0c074fb8544208029ce935c87219699 /pkgs/development/python-modules/pytest-server-fixtures
parentfdbb0f9040b5c0ac5f4a9027a81bc8962c331a75 (diff)
downloadnixpkgs-a3688867c571e4ea8b5a1100c84bb37e800437eb.tar
nixpkgs-a3688867c571e4ea8b5a1100c84bb37e800437eb.tar.gz
nixpkgs-a3688867c571e4ea8b5a1100c84bb37e800437eb.tar.bz2
nixpkgs-a3688867c571e4ea8b5a1100c84bb37e800437eb.tar.lz
nixpkgs-a3688867c571e4ea8b5a1100c84bb37e800437eb.tar.xz
nixpkgs-a3688867c571e4ea8b5a1100c84bb37e800437eb.tar.zst
nixpkgs-a3688867c571e4ea8b5a1100c84bb37e800437eb.zip
python.pkgs.pytest-server-fixtures: add future dependency
Diffstat (limited to 'pkgs/development/python-modules/pytest-server-fixtures')
-rw-r--r--pkgs/development/python-modules/pytest-server-fixtures/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pytest-server-fixtures/default.nix b/pkgs/development/python-modules/pytest-server-fixtures/default.nix
index 4749b8f74bc..c50795a6669 100644
--- a/pkgs/development/python-modules/pytest-server-fixtures/default.nix
+++ b/pkgs/development/python-modules/pytest-server-fixtures/default.nix
@@ -1,6 +1,6 @@
 { stdenv, buildPythonPackage, fetchPypi
 , pytest, setuptools-git, pytest-shutil, pytest-fixture-config, psutil
-, requests}:
+, requests, future }:
 
 buildPythonPackage rec {
   pname = "pytest-server-fixtures";
@@ -12,7 +12,7 @@ buildPythonPackage rec {
   };
 
   buildInputs = [ pytest ];
-  propagatedBuildInputs = [ setuptools-git pytest-shutil pytest-fixture-config psutil requests ];
+  propagatedBuildInputs = [ setuptools-git pytest-shutil pytest-fixture-config psutil requests future ];
 
   # RuntimeError: Unable to find a free server number to start Xvfb
   doCheck = false;