summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-21 12:23:15 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:44 +0100
commit16e02b37a3e8c79fb859ab4d0771db12099f4d5f (patch)
treeb9b1bdcc03d5683c6cc4e50b20587b27c5d76351
parente2f1337179c060f6571303d79a5dfd2bb96752fb (diff)
gnu: python-rope: Ignore failing test.
* gnu/packages/python-xyz.scm (python-rope) [arguments]<#:test-flags>: Ignore failing test. [native-inputs]: Remove python-pip, python-pre-commit, python-pytest-cov, python-wheel. [description]: Improve style. Change-Id: I506879b750ee63a60c9fd515721062b56612ba17 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-xyz.scm24
1 files changed, 11 insertions, 13 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2b4d211cee..bff8cbe350 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22472,22 +22472,20 @@ respectively.")
(base32
"1078mkzivz45my8x2y5gxisr0vba630xj7yxx7anr068xhnpshsi"))))
(build-system pyproject-build-system)
- (propagated-inputs
- (list python-pytoolconfig))
+ (arguments
+ (list
+ #:test-flags
+ #~(list "-k" "test_version_hash_varies_on_get_file_content")))
+ (propagated-inputs (list python-pytoolconfig))
(native-inputs
- (list python-pip
- python-pre-commit
- python-pytest
- python-pytest-cov
- python-pytest-timeout
- python-setuptools
- python-wheel))
+ (list python-pytest python-pytest-timeout python-setuptools))
(home-page "https://github.com/python-rope/rope")
(synopsis "Refactoring library for Python")
- (description "Rope is a refactoring library for Python. It facilitates
-the renaming, moving and extracting of attributes, functions, modules, fields
-and parameters in Python source code. These refactorings can also be applied
-to occurrences in strings and comments.")
+ (description
+ "Rope is a refactoring library for Python. It facilitates the renaming,
+moving and extracting of attributes, functions, modules, fields and parameters
+in Python source code. These refactorings can also be applied to occurrences
+in strings and comments.")
(license license:lgpl3+)))
(define-public python-py3status