[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50505] [PATCH v3 07/12] gnu: Add python-screeninfo.
From: |
Daniel Meißner |
Subject: |
[bug#50505] [PATCH v3 07/12] gnu: Add python-screeninfo. |
Date: |
Sun, 2 Jan 2022 00:51:50 +0100 |
* gnu/packages/python-xyz.scm (python-screeninfo): New variable.
---
gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d706d208af..0dbc9db830 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19710,6 +19710,28 @@ (define-public python-pyglet
music. All of this with a friendly Pythonic API that's simple to learn.")
(license license:bsd-3)))
+(define-public python-screeninfo
+ (package
+ (name "python-screeninfo")
+ (version "0.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "screeninfo" version))
+ (sha256
+ (base32
+ "007m7sqv30qak56885dxbijksrg2hd121hfpvg2llm734wspra8j"))))
+ (build-system python-build-system)
+ (native-inputs `(("python-pytest" ,python-pytest)))
+ (home-page "https://github.com/rr-/screeninfo")
+ (synopsis
+ "Obtain information about physical screens")
+ (description
+ "This python module provides means to access information about physical
+screens like resolution, height and width of the screen, connecting port
+etc.")
+ (license (list license:expat license:bsd-3))))
+
(define-public python-rencode
(package
(name "python-rencode")
--
2.34.0
- [bug#50505] [PATCH v3 00/13] Add python-manim and its missing dependencies, Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 01/12] gnu: Add python-cloup., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 03/12] gnu: Add python-glcontext., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 04/12] gnu: Add python-moderngl., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 05/12] gnu: Add python-pyglet., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 02/12] gnu: Add python-cloup-0.7., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 07/12] gnu: Add python-screeninfo.,
Daniel Meißner <=
- [bug#50505] [PATCH v3 10/12] gnu: Add python-mapbox-earcut., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 11/12] gnu: Add python-screeninfo-0.6., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 12/12] gnu: Add python-manim 0.9.0., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 09/12] gnu: Add python-manimpango., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 06/12] gnu: Add python-pyrr., Daniel Meißner, 2022/01/01
- [bug#50505] [PATCH v3 08/12] gnu: Add python-moderngl-window., Daniel Meißner, 2022/01/01