From a3688867c571e4ea8b5a1100c84bb37e800437eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 7 Apr 2018 14:56:42 +0200 Subject: [PATCH] python.pkgs.pytest-server-fixtures: add future dependency --- .../python-modules/pytest-server-fixtures/default.nix | 4 ++-- 1 file 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 4749b8f74bce..c50795a66698 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;