2018-02-27 21:06:27 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, EasyProcess }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "PyVirtualDisplay";
|
2020-06-06 07:47:36 +01:00
|
|
|
version = "1.3.2";
|
2018-02-27 21:06:27 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ EasyProcess ];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:36 +01:00
|
|
|
sha256 = "3fa85a6e490e45eab64e6be19841e0ab15ec8054c97f162079a061da6a93eba0";
|
2018-02-27 21:06:27 +00:00
|
|
|
};
|
|
|
|
|
2018-02-27 21:14:04 +00:00
|
|
|
# requires X server
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-02-27 21:06:27 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Python wrapper for Xvfb, Xephyr and Xvnc";
|
|
|
|
homepage = "https://github.com/ponty/pyvirtualdisplay";
|
|
|
|
license = licenses.bsdOriginal;
|
|
|
|
maintainers = with maintainers; [ layus ];
|
|
|
|
};
|
|
|
|
}
|