Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 easyprocess, 6}: 7 8buildPythonPackage rec { 9 pname = "pyvirtualdisplay"; 10 version = "3.0"; 11 format = "setuptools"; 12 13 propagatedBuildInputs = [ easyprocess ]; 14 15 src = fetchPypi { 16 pname = "PyVirtualDisplay"; 17 inherit version; 18 hash = "sha256-CXVbw86263JfsH7KVCX0PyNY078I4A0qm3kqGu3RYVk="; 19 }; 20 21 # requires X server 22 doCheck = false; 23 24 meta = with lib; { 25 description = "Python wrapper for Xvfb, Xephyr and Xvnc"; 26 homepage = "https://github.com/ponty/pyvirtualdisplay"; 27 license = licenses.bsdOriginal; 28 maintainers = with maintainers; [ layus ]; 29 }; 30}