[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69980] [PATCH python-team v3 11/14] gnu: python-nodeenv: Update to
From: |
Nicolas Graves |
Subject: |
[bug#69980] [PATCH python-team v3 11/14] gnu: python-nodeenv: Update to 1.8.0. |
Date: |
Sat, 1 Jun 2024 16:57:59 +0200 |
From: Vinicius Monego <monego@posteo.net>
* gnu/packages/python-xyz.scm (python-nodeenv): Update to 1.8.0.
[build-system]: Use pyproject-build-system.
[arguments]: Do not override the check phase, skip tests in #:test-flags
instead.
Change-Id: I01ca1948c30327827d6f76697b471a4d90cd6530
---
gnu/packages/python-xyz.scm | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 53762b111f3..65345f2b6b5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27692,7 +27692,7 @@ (define-public python-tldr
(define-public python-nodeenv
(package
(name "python-nodeenv")
- (version "1.4.0")
+ (version "1.8.0")
(source
(origin
;; There's no tarball in PyPI.
@@ -27702,15 +27702,13 @@ (define-public python-nodeenv
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "0y443icx0w7jlzmxmmcm4q8dqfiwgafbb9cp8jpm68mbqxbz40a7"))))
- (build-system python-build-system)
+ (base32 "0g8zp8zw5nnfc14ml0sil9yh7lnpz3xrdkazdkwg6pf5jqsxlvv9"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda _
- ;; This test fails. It tries to open a network socket.
- (invoke "pytest" "-vv" "-k" "not test_smoke"))))))
+ (list #:test-flags
+ #~(list "-k" (string-append
+ "not test_smoke"
+ " and not test_smoke_n_system_special_chars"))))
(native-inputs
(list python-coverage
python-mock
--
2.41.0
- [bug#69980] [PATCH python-team v3 00/14] Update pre-commit and remove dependents, Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 01/14] gnu: python-jsonargparse: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 02/14] gnu: python-traitlets: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 03/14] gnu: python-rich-click: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 04/14] gnu: python-lazy-loader: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 05/14] gnu: python-omnipath: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 06/14] gnu: python-jupytext: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 07/14] gnu: python-seaborn: Remove pre-commit from native-inputs., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 08/14] gnu: python-cfgv: Update to 3.4.0., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 09/14] gnu: Add python-ukkonen., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 11/14] gnu: python-nodeenv: Update to 1.8.0.,
Nicolas Graves <=
- [bug#69980] [PATCH python-team v3 10/14] gnu: python-identify: Update to 2.5.36., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 12/14] gnu: pre-commit: Update to 3.7.1., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 13/14] gnu: python-jupytext: Move to pyproject-build-system., Nicolas Graves, 2024/06/01
- [bug#69980] [PATCH python-team v3 14/14] gnu: jupytext: Fix pre-commit native-input removal., Nicolas Graves, 2024/06/01