diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2025-07-04 16:32:52 +0900 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-04 10:30:07 +0100 |
commit | d063e42cf953af4bc27fd26442855f7d42d019f3 (patch) | |
tree | 820d4561159d0154ae7fa6a320025e4e8530fb12 | |
parent | d3533a7b42cfdf364114c8948631dd81d39b5e35 (diff) |
gnu: Add python-flit-core-next.
* gnu/packages/python-build.scm (python-flit-core-next): New variable.
Change-Id: I1c0f6ca82808aca572a42bfa41f3002685480f0d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/python-build.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 00c7c3a24f..8e189c05dc 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -13,6 +13,7 @@ ;;; Copyright © 2024 David Elsing <david.elsing@posteo.net> ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2024 Antero Mejr <mail@antr.me> +;;; Copyright © 2025 Nguyễn Gia Phong <mcsinyx@disroot.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -636,6 +637,17 @@ specified by PEP 517, @code{flit_core.buildapi}.") (modify-inputs (package-propagated-inputs python-flit-core-bootstrap) (replace "python-toml" python-tomli))))) +(define-public python-flit-core-next + (package/inherit python-flit-core + (name "python-flit-core") + (version "3.12.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "flit" version)) + (sha256 + (base32 "0h1pxi2hgr95321bgl45l86693zl14l3shj0idsyg4k9v56z700w")))))) + (define-public python-flit-scm (package (name "python-flit-scm") |