1 { lib, buildPythonPackage, fetchPypi
2 , pytest, pytest-shutil, pytest-fixture-config, psutil
3 , requests, future, retry }:
5 buildPythonPackage rec {
6 pname = "pytest-server-fixtures";
10 inherit pname version;
11 sha256 = "07vdv3y89qzv89ws0y48h92yplqsx208b9cizx80w644dazb398g";
14 buildInputs = [ pytest ];
15 propagatedBuildInputs = [ pytest-shutil pytest-fixture-config psutil requests future retry ];
17 # RuntimeError: Unable to find a free server number to start Xvfb
21 description = "Extensible server fixures for py.test";
22 homepage = "https://github.com/manahl/pytest-plugins";
23 license = licenses.mit;
24 maintainers = with maintainers; [ nand0p ];