1{ 2 lib, 3 buildPythonPackage, 4 future, 5 psutil, 6 pytest, 7 pytest-shutil, 8 pytest-fixture-config, 9 requests, 10 retry, 11 six, 12 setuptools, 13}: 14 15buildPythonPackage { 16 pname = "pytest-server-fixtures"; 17 inherit (pytest-fixture-config) version src patches; 18 pyproject = true; 19 20 postPatch = '' 21 cd pytest-server-fixtures 22 ''; 23 24 build-system = [ setuptools ]; 25 26 buildInputs = [ pytest ]; 27 28 dependencies = [ 29 future 30 psutil 31 pytest-shutil 32 pytest-fixture-config 33 requests 34 retry 35 six 36 ]; 37 38 # Don't run integration tests 39 doCheck = false; 40 41 meta = with lib; { 42 description = "Extensible server fixures for py.test"; 43 homepage = "https://github.com/manahl/pytest-plugins"; 44 license = licenses.mit; 45 maintainers = [ ]; 46 }; 47}