summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyvirtualdisplay/default.nix
blob: 0ba6c4ba6c00fc18c81d87701d8414fca04027de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildPythonPackage, fetchPypi, easyprocess }:

buildPythonPackage rec {
  pname = "pyvirtualdisplay";
  version = "3.0";

  propagatedBuildInputs = [ easyprocess ];

  src = fetchPypi {
    pname = "PyVirtualDisplay";
    inherit version;
    hash = "sha256-CXVbw86263JfsH7KVCX0PyNY078I4A0qm3kqGu3RYVk=";
  };

  # 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 ];
  };
}