[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/23: gnu: python-tempora: Switch to pyproject-build-system.
From: |
guix-commits |
Subject: |
15/23: gnu: python-tempora: Switch to pyproject-build-system. |
Date: |
Thu, 27 Oct 2022 13:47:12 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit b8efe89eb4f569d3140e3feb398eb2f78b8987b6
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Mon Oct 17 21:42:15 2022 +0200
gnu: python-tempora: Switch to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-tempora)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Add #:test-flags. Remove #:phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
---
gnu/packages/python-xyz.scm | 27 +++++----------------------
1 file changed, 5 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 034781c2fd..922eacdc51 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21390,30 +21390,13 @@ particularly convenient for use in tests.")
(uri (pypi-uri "tempora" version))
(sha256
(base32 "09wirlk5vmxlhl9rnxp7g5qz2nsd6b0gnzk5fczbz0s8lsbz386b"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- ;; XXX: PEP 517 manual build copied from python-isort.
- (replace 'build
- (lambda _
- (setenv "SOURCE_DATE_EPOCH" "315532800")
- (invoke "python" "-m" "build" "--wheel" "--no-isolation" ".")))
- (replace 'install
- (lambda _
- (let ((whl (car (find-files "dist" "\\.whl$"))))
- (invoke "pip" "--no-cache-dir" "--no-input"
- "install" "--no-deps" "--prefix" #$output whl))))
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- ;; Do not test the myproject.toml build as it tries to pull
- ;; dependencies from the Internet.
- (invoke "pytest" "-k" "not project")))))))
+ ;; Do not test the myproject.toml build as it tries to pull
+ ;; dependencies from the Internet.
+ (list #:test-flags #~'("-vv" "-k" "not project")))
(native-inputs
- (list python-pypa-build
- python-freezegun
+ (list python-freezegun
python-pytest
python-pytest-black
python-pytest-checkdocs
- 05/23: gnu: python-pip: Move to (gnu packages python-build)., (continued)
- 05/23: gnu: python-pip: Move to (gnu packages python-build)., guix-commits, 2022/10/27
- 08/23: gnu: python-autopage: Use pyproject-build-system., guix-commits, 2022/10/27
- 11/23: gnu: python-glyphslib: Use pyproject-build-system., guix-commits, 2022/10/27
- 17/23: gnu: zabbix-cli: Switch to pyproject-build-system., guix-commits, 2022/10/27
- 20/23: gnu: python-path: Use pyproject-build-system., guix-commits, 2022/10/27
- 09/23: gnu: python-pydyf: Use pyproject-build-system., guix-commits, 2022/10/27
- 04/23: gnu: pypy: Move to separate module., guix-commits, 2022/10/27
- 06/23: build-system: Add pyproject-build-system., guix-commits, 2022/10/27
- 12/23: gnu: python-statmake: Use pyproject-build-system., guix-commits, 2022/10/27
- 14/23: gnu: python-mypy-protobuf: Switch to pyproject-build-system., guix-commits, 2022/10/27
- 15/23: gnu: python-tempora: Switch to pyproject-build-system.,
guix-commits <=
- 16/23: gnu: python-pygmsh: Use pyproject-build-system., guix-commits, 2022/10/27
- 19/23: gnu: python-openapi-spec-validator: Use pyproject-build-system., guix-commits, 2022/10/27
- 21/23: gnu: python-cattrs: Use pyproject-build-system., guix-commits, 2022/10/27
- 22/23: gnu: python-scikit-build: Switch to pyproject-build-system., guix-commits, 2022/10/27
- 07/23: news: Add entry for 'pyproject-build-system'., guix-commits, 2022/10/27
- 18/23: gnu: python-openapi-schema-validator: Use pyproject-build-system., guix-commits, 2022/10/27
- 23/23: gnu: python-deepmerge: Use pyproject-build-system., guix-commits, 2022/10/27