Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyvirtualdisplay / default.nix
blob0ba6c4ba6c00fc18c81d87701d8414fca04027de
1 { lib, buildPythonPackage, fetchPypi, easyprocess }:
3 buildPythonPackage rec {
4   pname = "pyvirtualdisplay";
5   version = "3.0";
7   propagatedBuildInputs = [ easyprocess ];
9   src = fetchPypi {
10     pname = "PyVirtualDisplay";
11     inherit version;
12     hash = "sha256-CXVbw86263JfsH7KVCX0PyNY078I4A0qm3kqGu3RYVk=";
13   };
15   # requires X server
16   doCheck = false;
18   meta = with lib; {
19     description = "Python wrapper for Xvfb, Xephyr and Xvnc";
20     homepage = "https://github.com/ponty/pyvirtualdisplay";
21     license = licenses.bsdOriginal;
22     maintainers = with maintainers; [ layus ];
23   };