diff options
| author | Vinicius Monego <monego@posteo.net> | 2025-06-22 13:28:41 -0300 |
|---|---|---|
| committer | Vinicius Monego <monego@posteo.net> | 2025-06-22 22:04:17 -0300 |
| commit | f4f6d9ac7edf02e767f2ce6873190f28f481a02c (patch) | |
| tree | c4edc0a4894d665e0993762ac6a9c5c266c7ffc3 | |
| parent | 73b7e4686aa7e216824f28acaeef7b94f3a7c110 (diff) | |
gnu: python-ueberzug: Update to 18.3.1.
* gnu/packages/python-xyz.scm (python-ueberzug): Update to 18.3.1.
[build-system]: Use pyproject-build-system.
[arguments]: Skip the 'check' phase.
[native-inputs]: Add meson-python, pkg-config.
[inputs]: Add libxres.
[propagated-inputs]: Remove python-xlib.
[home-page]: Switch to maintained repository.
Change-Id: Ia93f8d98767e0887b3f18335a5e4bfc8d925abf7
| -rw-r--r-- | gnu/packages/python-xyz.scm | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ea6fca8908..a0fc9ba2e0 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1494,20 +1494,24 @@ progress, among other things.") (define-public python-ueberzug (package (name "python-ueberzug") - (version "18.1.9") + (version "18.3.1") (source (origin (method url-fetch) (uri (pypi-uri "ueberzug" version)) (sha256 (base32 - "1hxd45dnwa9yv908acarr98n2drmar66wzq9z2qd3irj24srzr3w")))) - (build-system python-build-system) + "1sc05s72gvglsxsw4p0z5h47ygygw5h226vnaakas4ihjq9kiffl")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ; there are no tests + (native-inputs + (list meson-python pkg-config)) (inputs - (list libx11 libxext)) + (list libx11 libxext libxres)) (propagated-inputs - (list python-attrs python-docopt python-pillow python-xlib)) - (home-page "https://github.com/seebye/ueberzug") + (list python-attrs python-docopt python-pillow)) + (home-page "https://github.com/ueber-devel/ueberzug/") (synopsis "Command line util to display images in combination with X11") (description "Überzug is a command line util which draws images on terminals by using child windows. The advantages of using Überzug are: |
