[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
99/115: gnu: Add python-tomli.
From: |
guix-commits |
Subject: |
99/115: gnu: Add python-tomli. |
Date: |
Fri, 15 Oct 2021 09:49:18 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit 32d87b168a8cb9f3c5565a1a65895bf31b13af09
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Oct 1 15:52:16 2021 -0400
gnu: Add python-tomli.
* gnu/packages/python-build.scm (python-tomli): New variable.
---
gnu/packages/python-build.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 57b56f6..a7b60ac 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -135,6 +135,44 @@ Python file, so it can be easily copied into your
project.")
(define-public python2-six-bootstrap
(package-with-python2 python-six-bootstrap))
+(define-public python-tomli
+ (package
+ (name "python-tomli")
+ (version "1.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "tomli" version))
+ (sha256
+ (base32 "0hllrb2p93bfhrm7frf0pj1fl6f5kn0w2h0vmx3vp2lnyfv5rdx5"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f ;disabled to avoid extra dependencies
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'build
+ (lambda _
+ (setenv "PYTHONPATH" (string-append (getcwd) ":"
+ (getenv "GUIX_PYTHONPATH")))
+ (invoke "python" "-m" "build" "--wheel" "--no-isolation"
+ "--skip-dependency-check")))
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (whl (car (find-files "dist" "\\.whl$"))))
+ (invoke "pip" "--no-cache-dir" "--no-input"
+ "install" "--no-deps" "--prefix" out whl)))))))
+ (native-inputs
+ `(("python-flit-core" ,python-flit-core)
+ ("python-pypa-build" ,python-pypa-build)
+ ("python-six", python-six-bootstrap)))
+ (home-page "https://github.com/hukkin/tomli")
+ (synopsis "Small and fast TOML parser")
+ (description "Tomli is a minimal TOML parser that is fully compatible with
+@url{https://toml.io/en/v1.0.0,TOML v1.0.0}. It is about 2.4 times as fast as
+@code{python-toml}.")
+ (license license:expat)))
+
(define-public python-pep517-bootstrap
(hidden-package
(package
- 94/115: gnu: Build all Rust packages using the latest rustc., (continued)
- 94/115: gnu: Build all Rust packages using the latest rustc., guix-commits, 2021/10/15
- 95/115: gnu: fontconfig: Add a search path for XDG_DATA_DIRS., guix-commits, 2021/10/15
- 96/115: gnu: Move a few Python packages to (gnu packages python-build)., guix-commits, 2021/10/15
- 98/115: gnu: Add python-flit-core., guix-commits, 2021/10/15
- 106/115: gnu: at-spi2-core: Reverse inheritance relationship with minimal variant., guix-commits, 2021/10/15
- 112/115: gnu: lsof: Fix indentation., guix-commits, 2021/10/15
- 114/115: gnu: openssl: Absorb 1.1.1l graft., guix-commits, 2021/10/15
- 111/115: gnu: lsof: Disable the LTlock test., guix-commits, 2021/10/15
- 113/115: gnu: cmake-bootstrap: Update to 3.21.3., guix-commits, 2021/10/15
- 103/115: gnu: meson: Patch to allow installing to independent prefixes., guix-commits, 2021/10/15
- 99/115: gnu: Add python-tomli.,
guix-commits <=