python.pkgs.pytest-server-fixtures: add future dependency

This commit is contained in:
Robert Schütz 2018-04-07 14:56:42 +02:00 committed by Frederik Rietdijk
parent fdbb0f9040
commit a3688867c5

View file

@ -1,6 +1,6 @@
{ stdenv, buildPythonPackage, fetchPypi { stdenv, buildPythonPackage, fetchPypi
, pytest, setuptools-git, pytest-shutil, pytest-fixture-config, psutil , pytest, setuptools-git, pytest-shutil, pytest-fixture-config, psutil
, requests}: , requests, future }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-server-fixtures"; pname = "pytest-server-fixtures";
@ -12,7 +12,7 @@ buildPythonPackage rec {
}; };
buildInputs = [ pytest ]; 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 # RuntimeError: Unable to find a free server number to start Xvfb
doCheck = false; doCheck = false;