diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-13 15:51:36 +0000 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:18:08 +0100 |
| commit | 26ecbf391a4587e7e19dceeba6c4b32e95dff6ce (patch) | |
| tree | cbb7ab8943578f606888e4b8f8a8f9d815ff8e10 /gnu/packages/python-build.scm | |
| parent | b5dd854f7473ba7f3b1f4c58118b4641b618810d (diff) | |
gnu: python-setuptools-scm-next: Undeprecate.
This particular version is required for Dask update, I try to avoid
updating python-setuptools-scm to prevent triggering 8k+ rebuilds.
* gnu/packages/python-build.scm (python-setuptools-scm-next):
Undeprecate variable and set to 9.2.2 version.
Change-Id: I0e7f879bcf4f58ad9741ff4c7efb039c350f0014
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-build.scm')
| -rw-r--r-- | gnu/packages/python-build.scm | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 4b07344eee4..3bddb7a3dc7 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -741,8 +741,17 @@ system, then @code{flit_core} to build the package.") them as the version argument or in a SCM managed file.") (license license:expat))) -(define-deprecated/public-alias python-setuptools-scm-next - python-setuptools-scm) ;may be removed after 2025-12-01 +(define-public python-setuptools-scm-next + (package + (inherit python-setuptools-scm) + (name "python-setuptools-scm") + (version "9.2.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "setuptools_scm" version)) + (sha256 + (base32 "0mzgyyg1cgigkmlfm0iy44f2092zn8xc093ygn4a11jncss4lrqw")))))) (define-public python-editables (package |
