Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.virtual-display: 0.1.5 -> 0.2.1 and disable tests

(cherry picked from commit 5d7f24e8b5be46ff4cccb7e5954d9cf27cea907a)

+5 -2
+5 -2
pkgs/development/python-modules/virtual-display/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "PyVirtualDisplay"; 5 - version = "0.1.5"; 5 + version = "0.2.1"; 6 6 7 7 propagatedBuildInputs = [ EasyProcess ]; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "aa6aef08995e14c20cc670d933bfa6e70d736d0b555af309b2e989e2faa9ee53"; 11 + sha256 = "012883851a992f9c53f0dc6a512765a95cf241bdb734af79e6bdfef95c6e9982"; 12 12 }; 13 + 14 + # requires X server 15 + doCheck = false; 13 16 14 17 meta = with lib; { 15 18 description = "Python wrapper for Xvfb, Xephyr and Xvnc";