[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
298/361: gnu: python-exceptiongroup: Move to python-build.
From: |
guix-commits |
Subject: |
298/361: gnu: python-exceptiongroup: Move to python-build. |
Date: |
Thu, 21 Nov 2024 06:29:38 -0500 (EST) |
sharlatan pushed a commit to branch python-team
in repository guix.
commit 8ffb06c3c6014a0aebae96b0f5ce5baacc01d20a
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Nov 10 15:05:10 2024 +0000
gnu: python-exceptiongroup: Move to python-build.
* gnu/packages/python-xyz.scm (python-exceptiongroup): Move from here ...
* gnu/packages/python-build.scm: ... to here.
Change-Id: Id034df5a988c5f6a4448879ba44ee1315888f63b
---
gnu/packages/python-build.scm | 44 +++++++++++++++++++++++++++++++++++++++++++
gnu/packages/python-xyz.scm | 43 ------------------------------------------
2 files changed, 44 insertions(+), 43 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index b8c4438d40..bfe72ea91b 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -697,6 +697,50 @@ installed, will expose packages in a local directory on
@code{sys.path} in
reflected in the package visible to Python, without needing a reinstall.")
(license license:expat)))
+;; This package may be removed when we have Python 3.11 on board.
+(define-public python-exceptiongroup
+ (package
+ (name "python-exceptiongroup")
+ (version "1.1.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/agronholm/exceptiongroup")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0wcvzwgjs0xmggs6dh92jxdqi988gafzh10hrzvw10kasy0xakfj"))))
+ (build-system python-build-system)
+ (arguments
+ (list
+ #:tests? #f ;TODO: Circular dependency on pytest
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; XXX: PEP 517 manual build/install procedures copied from
+ ;; python-isort.
+ (replace 'build
+ (lambda _
+ (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)
+ ;; ZIP does not support timestamps before 1980.
+ (setenv "SOURCE_DATE_EPOCH" "315532800")
+ (invoke "python" "-m" "build" "--wheel" "--no-isolation" ".")))
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (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?
+ (invoke "pytest" "-vv" "tests")))))))
+ (native-inputs (list python-flit-scm python-pypa-build))
+ (home-page "https://github.com/agronholm/exceptiongroup")
+ (synopsis "PEP 654 backport from Python 3.11")
+ (description "This is a backport of the @code{BaseExceptionGroup} and
+@code{ExceptionGroup} classes from Python 3.11.")
+ (license license:expat)))
+
(define-public python-hatchling
(package
(name "python-hatchling")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8a56f8eca4..de316b0cba 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5317,49 +5317,6 @@ user configuration files. It does not have support for
serializing into YAML
and is not compatible with JSON.")
(license license:expat)))
-(define-public python-exceptiongroup
- (package
- (name "python-exceptiongroup")
- (version "1.1.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/agronholm/exceptiongroup")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0wcvzwgjs0xmggs6dh92jxdqi988gafzh10hrzvw10kasy0xakfj"))))
- (build-system python-build-system)
- (arguments
- (list
- #:tests? #f ;TODO: Circular dependency on pytest
- #:phases
- #~(modify-phases %standard-phases
- ;; XXX: PEP 517 manual build/install procedures copied from
- ;; python-isort.
- (replace 'build
- (lambda _
- (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)
- ;; ZIP does not support timestamps before 1980.
- (setenv "SOURCE_DATE_EPOCH" "315532800")
- (invoke "python" "-m" "build" "--wheel" "--no-isolation" ".")))
- (replace 'install
- (lambda* (#:key outputs #:allow-other-keys)
- (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?
- (invoke "pytest" "-vv" "tests")))))))
- (native-inputs (list python-flit-scm python-pypa-build))
- (home-page "https://github.com/agronholm/exceptiongroup")
- (synopsis "PEP 654 backport from Python 3.11")
- (description "This is a backport of the @code{BaseExceptionGroup} and
-@code{ExceptionGroup} classes from Python 3.11.")
- (license license:expat)))
-
(define-public python-extension-helpers
(package
(name "python-extension-helpers")
- 336/361: gnu: python-isort: Update to 5.13.2., (continued)
- 336/361: gnu: python-isort: Update to 5.13.2., guix-commits, 2024/11/21
- 348/361: gnu: python-itsdangerous: Update to 2.2.0., guix-commits, 2024/11/21
- 361/361: gnu: python-pydantic: Update to 1.10.19., guix-commits, 2024/11/21
- 238/361: gnu: python-parameterized-next: Adjust inputs., guix-commits, 2024/11/21
- 245/361: gnu: nikola: Fix build., guix-commits, 2024/11/21
- 257/361: gnu: python-defusedxml: Update to 0.7.1., guix-commits, 2024/11/21
- 260/361: gnu: ytcc: Fix build., guix-commits, 2024/11/21
- 249/361: gnu: python-cucumber-tag-expressions: Update to 6.1.1., guix-commits, 2024/11/21
- 267/361: gnu: python-unyt: Adjust inputs., guix-commits, 2024/11/21
- 264/361: gnu: hangups: Fix build., guix-commits, 2024/11/21
- 298/361: gnu: python-exceptiongroup: Move to python-build.,
guix-commits <=
- 274/361: gnu: python-cplot: Adjust inputs., guix-commits, 2024/11/21
- 301/361: gnu: Remove python-pytest-next., guix-commits, 2024/11/21
- 324/361: gnu: python-tomli: Update to 2.1.0., guix-commits, 2024/11/21
- 316/361: gnu: python-cffi: Improve package style., guix-commits, 2024/11/21
- 306/361: gnu: python-pytest-timeout: Update to 2.3.1., guix-commits, 2024/11/21
- 307/361: gnu: python-pytest-forked: Disable tests., guix-commits, 2024/11/21
- 326/361: gnu: python-packaging-bootstrap: Update to 24.2., guix-commits, 2024/11/21
- 333/361: gnu: python-mypy: Update to 1.13.0., guix-commits, 2024/11/21
- 329/361: gnu: python-cython-3: Update to 3.0.11., guix-commits, 2024/11/21
- 332/361: gnu: python-jsonschema: Update to 4.23.0., guix-commits, 2024/11/21