1{ lib, buildPythonPackage, fetchPypi, EasyProcess }:
2
3buildPythonPackage rec {
4 pname = "PyVirtualDisplay";
5 version = "3.0";
6
7 propagatedBuildInputs = [ EasyProcess ];
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "sha256-CXVbw86263JfsH7KVCX0PyNY078I4A0qm3kqGu3RYVk=";
12 };
13
14 # requires X server
15 doCheck = false;
16
17 meta = with lib; {
18 description = "Python wrapper for Xvfb, Xephyr and Xvnc";
19 homepage = "https://github.com/ponty/pyvirtualdisplay";
20 license = licenses.bsdOriginal;
21 maintainers = with maintainers; [ layus ];
22 };
23}