summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-03-31 08:18:31 +0200
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:23 +0200
commit7780df4ee764e74e31372538b953bd86f2b89bd2 (patch)
treeb585434d4e273e5ad8f1f98fd73a78d3e291dcfc /gnu/packages/python-web.scm
parentf6d9a7cc79a3553e09981d8d585542e1fd37fdfe (diff)
gnu: python-databricks-cli: Update to 0.18.0.
* gnu/packages/python-web.scm (python-databricks-cli): Update to 0.18.0. [build-system]: Switch to pyproject-build-system. [arguments]: Improve style, use gexps. [native-inputs]: Add python-setuptools, python-wheel. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm18
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 23d29625b37..732c8bab0af 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3363,7 +3363,7 @@ another XPath engine to find the matching elements in an XML or HTML document.")
(define-public python-databricks-cli
(package
(name "python-databricks-cli")
- (version "0.17.0")
+ (version "0.18.0")
(home-page "https://github.com/databricks/databricks-cli")
(source (origin
(method git-fetch)
@@ -3371,19 +3371,21 @@ another XPath engine to find the matching elements in an XML or HTML document.")
(file-name (git-file-name name version))
(sha256
(base32
- "1qwbxnx64kw7lrzlyx3hfbnjxpc19cqvvj0gcrkqpyjsgd08vja0"))))
- (build-system python-build-system)
+ "1avag4kwqk2f24r5i0vcmhm6s1gsw6maykhlyj2ixz0qc05pjzvl"))))
+ (build-system pyproject-build-system)
(arguments
- '(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda _
- (invoke "pytest" "tests" "-vv"))))))
+ (list #:phases #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda _
+ (invoke "pytest" "tests" "-vv"))))))
(native-inputs
;; For tests.
(list python-decorator
python-mock
python-pytest
- python-requests-mock))
+ python-requests-mock
+ python-setuptools
+ python-wheel))
(propagated-inputs
(list python-click
python-oauthlib