[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/12: gnu: python-xyzservices: Simplify package.
From: |
guix-commits |
Subject: |
06/12: gnu: python-xyzservices: Simplify package. |
Date: |
Sun, 18 Feb 2024 07:23:16 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit 1a2c374c2cca5694ec2a38f01e33b9bce7218d44
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sat Feb 17 22:13:24 2024 +0000
gnu: python-xyzservices: Simplify package.
* gnu/packages/python-xyz.scm (python-xyzservices) [build-system]: Swap
to pyproject-build-system.
[arguments] <#:test-flags>: Skip tests requiring request module, as seen
in project's GitHub Actions.
<#:phases>: Use standard 'check phase.
Change-Id: I9092e282bebc8539e9ceed5ec87559d64513a486
---
gnu/packages/python-xyz.scm | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c83442c906..d93bbfe6ea 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28276,14 +28276,10 @@ translating between quadkey and tile coordinates.")
(uri (pypi-uri "xyzservices" version))
(sha256
(base32 "1paxv4i0dws85md7csv7pf80jl3xh792mx8rxnsrk61ks3ivbsyg"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-vv")))))))
+ (list
+ #:test-flags #~(list "-m" "not request")))
(native-inputs
(list python-pytest python-mercantile python-requests))
(home-page "https://github.com/geopandas/xyzservices")
- branch master updated (3cf199dbcf -> 2f1ed825af), guix-commits, 2024/02/18
- 01/12: gnu: Add python-pytest-tornado5., guix-commits, 2024/02/18
- 02/12: gnu: Add python-apscheduler., guix-commits, 2024/02/18
- 03/12: gnu: python-crontab: Enable tests., guix-commits, 2024/02/18
- 05/12: gnu: python-zeroconf: Simplify package., guix-commits, 2024/02/18
- 04/12: gnu: python-crontab: Update to 3.0.0., guix-commits, 2024/02/18
- 08/12: gnu: python-humanize: Update to 4.0.0., guix-commits, 2024/02/18
- 09/12: gnu: python-watchdog: Simplify package., guix-commits, 2024/02/18
- 10/12: gnu: python-devtools: Update to 0.12.2, fix build., guix-commits, 2024/02/18
- 11/12: gnu: python-simpervisor: Update to 1.0.0., guix-commits, 2024/02/18
- 06/12: gnu: python-xyzservices: Simplify package.,
guix-commits <=
- 07/12: gnu: python-trio-websocket: Simplify package., guix-commits, 2024/02/18
- 12/12: gnu: python-simpervisor: Enable tests., guix-commits, 2024/02/18