1{ stdenv, buildPythonPackage, fetchPypi 2, pytest, setuptools-git, pytest-shutil, pytest-fixture-config, psutil 3, requests, future }: 4 5buildPythonPackage rec { 6 pname = "pytest-server-fixtures"; 7 version = "1.3.1"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "902607675ce2ee09bdc72381b4470f79504fc131afdc15174e49a84d031760df"; 12 }; 13 14 buildInputs = [ pytest ]; 15 propagatedBuildInputs = [ setuptools-git pytest-shutil pytest-fixture-config psutil requests future ]; 16 17 # RuntimeError: Unable to find a free server number to start Xvfb 18 doCheck = false; 19 20 meta = with stdenv.lib; { 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 ]; 25 }; 26}