summary refs log tree commit diff
path: root/pkgs/development/python-modules/virtual-display
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-27 22:14:04 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-27 23:04:16 +0100
commit5d7f24e8b5be46ff4cccb7e5954d9cf27cea907a (patch)
tree7364eb443bb087e7061c66cf80c661bcd12038d2 /pkgs/development/python-modules/virtual-display
parent7076991eec964534ff146bd5af7f772028152d1b (diff)
downloadnixlib-5d7f24e8b5be46ff4cccb7e5954d9cf27cea907a.tar
nixlib-5d7f24e8b5be46ff4cccb7e5954d9cf27cea907a.tar.gz
nixlib-5d7f24e8b5be46ff4cccb7e5954d9cf27cea907a.tar.bz2
nixlib-5d7f24e8b5be46ff4cccb7e5954d9cf27cea907a.tar.lz
nixlib-5d7f24e8b5be46ff4cccb7e5954d9cf27cea907a.tar.xz
nixlib-5d7f24e8b5be46ff4cccb7e5954d9cf27cea907a.tar.zst
nixlib-5d7f24e8b5be46ff4cccb7e5954d9cf27cea907a.zip
pythonPackages.virtual-display: 0.1.5 -> 0.2.1 and disable tests
Diffstat (limited to 'pkgs/development/python-modules/virtual-display')
-rw-r--r--pkgs/development/python-modules/virtual-display/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/virtual-display/default.nix b/pkgs/development/python-modules/virtual-display/default.nix
index 0d559c8c88a0..262d2a5d33a0 100644
--- a/pkgs/development/python-modules/virtual-display/default.nix
+++ b/pkgs/development/python-modules/virtual-display/default.nix
@@ -2,15 +2,18 @@
 
 buildPythonPackage rec {
   pname = "PyVirtualDisplay";
-  version = "0.1.5";
+  version = "0.2.1";
 
   propagatedBuildInputs = [ EasyProcess ];
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "aa6aef08995e14c20cc670d933bfa6e70d736d0b555af309b2e989e2faa9ee53";
+    sha256 = "012883851a992f9c53f0dc6a512765a95cf241bdb734af79e6bdfef95c6e9982";
   };
 
+  # requires X server
+  doCheck = false;
+
   meta = with lib; {
     description = "Python wrapper for Xvfb, Xephyr and Xvnc";
     homepage = "https://github.com/ponty/pyvirtualdisplay";