python.pkgs.pytest-server-fixtures: add future dependency
This commit is contained in:
parent
fdbb0f9040
commit
a3688867c5
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue