2018-02-27 22:06:27 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, EasyProcess }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "PyVirtualDisplay";
|
2019-12-19 20:31:25 +01:00
|
|
|
version = "0.2.5";
|
2018-02-27 22:06:27 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ EasyProcess ];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 20:31:25 +01:00
|
|
|
sha256 = "5b267c8ffc98fcbd084ba852ab4caef3f22e9362bc5d117e1697e767553eaf41";
|
2018-02-27 22:06:27 +01:00
|
|
|
};
|
|
|
|
|
2018-02-27 22:14:04 +01:00
|
|
|
# requires X server
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-02-27 22:06:27 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|