1{ lib, buildPythonPackage, fetchPypi, EasyProcess }: 2 3buildPythonPackage rec { 4 pname = "PyVirtualDisplay"; 5 version = "0.2.1"; 6 7 propagatedBuildInputs = [ EasyProcess ]; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "012883851a992f9c53f0dc6a512765a95cf241bdb734af79e6bdfef95c6e9982"; 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}