10 buildPythonPackage rec {
11 pname = "pytest-xvfb";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
18 inherit pname version;
19 hash = "sha256-N0arH00RWfA/dRY40FNonM0oQpGzi4+wPT67579pz8A=";
22 buildInputs = [ pytest ];
24 propagatedBuildInputs = [ pyvirtualdisplay ];
27 description = "Pytest plugin to run Xvfb for tests";
28 homepage = "https://github.com/The-Compiler/pytest-xvfb";
29 changelog = "https://github.com/The-Compiler/pytest-xvfb/blob/v${version}/CHANGELOG.rst";
30 license = licenses.mit;