[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#56803] [PATCH 2/6] gnu: Add python-xvfbwrapper.
From: |
Tomasz Jeneralczyk |
Subject: |
[bug#56803] [PATCH 2/6] gnu: Add python-xvfbwrapper. |
Date: |
Wed, 27 Jul 2022 21:00:24 +0200 |
Also updates copyright.
* gnu/packages/python-check.scm (python-xvfbwrapper): New variable.
---
gnu/packages/python-check.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index af0e5be28b..e5d9600490 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -15,6 +15,7 @@
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
;;; Copyright © 2022 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
;;; Copyright © 2022 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2022 Tomasz Jeneralczyk <tj@schwi.pl>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2373,3 +2374,24 @@ (define-public python-pycotap
attachments).
@end itemize")
(license license:expat)))
+
+(define-public python-xvfbwrapper
+ (package
+ (name "python-xvfbwrapper")
+ (version "0.2.9")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "xvfbwrapper" version))
+ (sha256
+ (base32
+ "097wxhvp01ikqpg1z3v8rqhss6f1vwr399zpz9a05d2135bsxx5w"))))
+ (build-system python-build-system)
+ (propagated-inputs (list xorg-server-for-tests))
+ (home-page "https://github.com/cgoldberg/xvfbwrapper")
+ (synopsis "Python module for controlling virtual displays with Xvfb")
+ (description
+ "Xvfb (X virtual framebuffer) is a display server implementing
+the X11 display server protocol. It runs in memory and does not require a
+physical display. Only a network layer is necessary. Xvfb is useful for
+running acceptance tests on headless servers.")
+ (license license:expat)))
--
2.37.1
- [bug#56803] [PATCH 0/6] Add hydrus network and its dependencies, Tomasz Jeneralczyk, 2022/07/27
- [bug#56803] [PATCH 1/6] gnu: Add swftools., Tomasz Jeneralczyk, 2022/07/27
- [bug#56803] [PATCH 2/6] gnu: Add python-xvfbwrapper.,
Tomasz Jeneralczyk <=
- [bug#56803] [PATCH 4/6] gnu: Add opencv-with-python., Tomasz Jeneralczyk, 2022/07/27
- [bug#56803] [PATCH 5/6] gnu: Update python-cloudscraper., Tomasz Jeneralczyk, 2022/07/27
- [bug#56803] [PATCH 3/6] gnu: Add python-mpv., Tomasz Jeneralczyk, 2022/07/27
- [bug#56803] [PATCH 6/6] gnu: Add hydrus-network., Tomasz Jeneralczyk, 2022/07/27