summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-11 22:19:45 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 17:06:56 +0100
commitf17acf0eefc79b96356f1c426d971d781a39fc3c (patch)
treeaf3dbf897ab9eb9611977d75f30638c4a6a13f79
parent2e0fbc9816d7854bd710a4cf249488fef209a500 (diff)
gnu: python-setuptools-scm-next: Set to python-setuptools-scm.
* gnu/packages/python-build.scm (python-setuptools-scm-next): Set to python-setuptools-scm. Change-Id: I929ca14d24ed05efecded4c23ff02c42d50098c6
-rw-r--r--gnu/packages/python-build.scm31
1 files changed, 1 insertions, 30 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 30f6d3be5d..83cfedfb36 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -693,36 +693,7 @@ system, then @code{flit_core} to build the package.")
them as the version argument or in a SCM managed file.")
(license license:expat)))
-(define-public python-setuptools-scm-next
- (package
- (inherit python-setuptools-scm)
- (name "python-setuptools-scm")
- (version "8.1.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "setuptools_scm" version))
- (sha256
- (base32 "19y84rzqwb2rd88bjrlafrhfail2bnk6apaig8xskjviayva3pj2"))))
- (build-system pyproject-build-system)
- (arguments (list
- ;; pyproject-build-system will error handle forms such as
- ;; "module:object", so we set it.
- #:build-backend "setuptools.build_meta"
- #:phases
- #~(modify-phases %standard-phases
- (add-before 'build 'setenv
- (lambda _
- ;; pyproject-build-system ignore backend-path,
- ;; and __import__ ignore GUIX_PYTHONPATH, so set
- ;; PYTHONPATH.
- (setenv "PYTHONPATH"
- (string-append
- (getcwd)
- ":"
- (getcwd) "/src:"
- (getenv "GUIX_PYTHONPATH"))))))
- #:tests? #f)) ;avoid extra dependencies such as pytest
- (native-inputs (list python-setuptools python-wheel))))
+(define-public python-setuptools-scm-next python-setuptools-scm)
(define-public python-editables
(package