cd55e52de3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-pyvirtualdisplay/versions
24 lines
572 B
Nix
24 lines
572 B
Nix
{ lib, buildPythonPackage, fetchPypi, EasyProcess }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PyVirtualDisplay";
|
|
version = "0.2.4";
|
|
|
|
propagatedBuildInputs = [ EasyProcess ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0nybvd7sajig6vya2v3fd20dls6f3nnf12x8anrfxnjs41chgx87";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|