24 lines
582 B
Nix
24 lines
582 B
Nix
{ lib, buildPythonPackage, fetchPypi, EasyProcess }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PyVirtualDisplay";
|
|
version = "2.2";
|
|
|
|
propagatedBuildInputs = [ EasyProcess ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "3ecda6b183b03ba65dcfdf0019809722480d7b7e10eea6e3a40bf1ba3146bab7";
|
|
};
|
|
|
|
# requires X server
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper for Xvfb, Xephyr and Xvnc";
|
|
homepage = "https://github.com/ponty/pyvirtualdisplay";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = with maintainers; [ layus ];
|
|
};
|
|
}
|