1{ lib, buildPythonPackage, fetchPypi
2, pytest, pytest-shutil, pytest-fixture-config, psutil
3, requests, future, retry }:
4
5buildPythonPackage rec {
6 pname = "pytest-server-fixtures";
7 version = "1.7.0";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "07vdv3y89qzv89ws0y48h92yplqsx208b9cizx80w644dazb398g";
12 };
13
14 buildInputs = [ pytest ];
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 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; [ ];
25 };
26}