Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 26 lines 789 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, pytest_3, pytest-shutil, pytest-fixture-config, psutil 3, requests, future, retry }: 4 5buildPythonPackage rec { 6 pname = "pytest-server-fixtures"; 7 version = "1.6.2"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "c89f9532f62cf851489082ece1ec692b6ed5b0f88f20823bea25e2a963ebee8f"; 12 }; 13 14 buildInputs = [ pytest_3 ]; 15 propagatedBuildInputs = [ pytest-shutil pytest-fixture-config psutil requests future retry ]; 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}