nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 23 lines 584 B view raw
1{ lib, buildPythonPackage, fetchPypi, EasyProcess }: 2 3buildPythonPackage rec { 4 pname = "PyVirtualDisplay"; 5 version = "0.2.5"; 6 7 propagatedBuildInputs = [ EasyProcess ]; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "5b267c8ffc98fcbd084ba852ab4caef3f22e9362bc5d117e1697e767553eaf41"; 12 }; 13 14 # requires X server 15 doCheck = false; 16 17 meta = with lib; { 18 description = "Python wrapper for Xvfb, Xephyr and Xvnc"; 19 homepage = "https://github.com/ponty/pyvirtualdisplay"; 20 license = licenses.bsdOriginal; 21 maintainers = with maintainers; [ layus ]; 22 }; 23}