[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/26: gnu: python-blessed: Update to 1.20.0.
From: |
guix-commits |
Subject: |
10/26: gnu: python-blessed: Update to 1.20.0. |
Date: |
Wed, 10 May 2023 13:30:59 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 9e1cbc62e54513ce92f7fc282700c87c93bfd25c
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed May 10 12:37:34 2023 +0200
gnu: python-blessed: Update to 1.20.0.
* gnu/packages/python-xyz.scm (python-blessed): Update to 1.20.0.
[source]: Simplify snippet.
[build-system]: Use pyproject-build-system.
[arguments]: Use test-flags to avoid pytest-coverage; remove custom 'check
phase.
[propagated-inputs]: Remove python-jinxed python-six.
[native-inputs]: Remove python-mock.
---
gnu/packages/python-xyz.scm | 28 +++++++++-------------------
1 file changed, 9 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a2a84830da..9f564bb9ae 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27928,34 +27928,24 @@ placement and scaling of SVG figures and adding
markers, such as labels.")
(define-public python-blessed
(package
(name "python-blessed")
- (version "1.17.9")
+ (version "1.20.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "blessed" version))
(sha256
(base32
- "1fx9lyzyaxd44jwpp9k3c0gx37xsww1q7gq01hqbf258x1dplj8d"))
- (modules '((guix build utils)))
+ "103ng3ap33xs6i7606q3k6rwvjva9l7qi8j7vw08y13ffkw6gp9c"))
(snippet
- '(begin
- ;; Don't get hung up on Windows test failures.
- (delete-file "blessed/win_terminal.py")))))
- (build-system python-build-system)
+ ;; Don't get hung up on Windows test failures.
+ '(delete-file "blessed/win_terminal.py"))))
+ (build-system pyproject-build-system)
(arguments
(list
- #:phases
- #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key inputs outputs tests? #:allow-other-keys)
- (when tests?
- (add-installed-pythonpath inputs outputs)
- (delete-file "tox.ini")
- (invoke "python" "-m" "pytest" "tests")))))))
- (propagated-inputs
- (list python-jinxed python-six python-wcwidth))
- (native-inputs
- (list python-mock python-pytest))
+ ;; Avoid python-pytest-coverage
+ #:test-flags '(list "-c /dev/null")))
+ (propagated-inputs (list python-wcwidth))
+ (native-inputs (list python-pytest))
(home-page "https://github.com/jquast/blessed")
(synopsis "Wrapper around terminal capabilities")
(description
- branch master updated (e2eb43f945 -> b7534e4b5d), guix-commits, 2023/05/10
- 02/26: gnu: Add python-deepdiff., guix-commits, 2023/05/10
- 22/26: gnu: Add python-typeshed-client., guix-commits, 2023/05/10
- 16/26: gnu: Add python-starlette-for-fastapi-0.88., guix-commits, 2023/05/10
- 08/26: gnu: Add python-types-setuptools., guix-commits, 2023/05/10
- 10/26: gnu: python-blessed: Update to 1.20.0.,
guix-commits <=
- 23/26: gnu: Add python-starsessions-for-pytorch-lightning., guix-commits, 2023/05/10
- 20/26: gnu: python-arrow: Update to 1.2.3., guix-commits, 2023/05/10
- 13/26: gnu: python-scikit-optimize: Fix build with newer numpy and sklearn., guix-commits, 2023/05/10
- 19/26: gnu: Add python-types-requests., guix-commits, 2023/05/10
- 01/26: gnu: python-pytorch: Update to 1.13.1., guix-commits, 2023/05/10
- 06/26: gnu: Add python-lightning-utilities., guix-commits, 2023/05/10
- 15/26: gnu: Add python-inquirer., guix-commits, 2023/05/10
- 25/26: gnu: Add python-jsonargparse., guix-commits, 2023/05/10
- 26/26: gnu: Add python-pytorch-lightning., guix-commits, 2023/05/10
- 14/26: gnu: Add python-readchar., guix-commits, 2023/05/10