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