[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
97/203: gnu: Add python-flit-core.
From: |
guix-commits |
Subject: |
97/203: gnu: Add python-flit-core. |
Date: |
Wed, 3 Nov 2021 21:10:10 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit 276464e72d082e3e09c379f4a1668288c1699336
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Oct 1 11:00:51 2021 -0400
gnu: Add python-flit-core.
* gnu/packages/python-build.scm (python-flit-core): New variable.
---
gnu/packages/python-build.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index e55044d..44edb2d 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -27,6 +27,7 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system python)
#:use-module (guix download)
+ #:use-module (guix git-download)
#:use-module (guix packages))
;;; Commentary:
@@ -298,3 +299,44 @@ implementation developed for Poetry. This project is
intended to be
a light weight, fully compliant, self-contained package allowing PEP 517
compatible build front-ends to build Poetry managed projects.")
(license license:expat)))
+
+(define-public python-flit-core
+ (package
+ (name "python-flit-core")
+ (version "3.4.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "flit" version))
+ (sha256
+ (base32 "10vjqnybvjdqdbmyc0asbhhvq51yjnnj00645yiq9849gnr8h0ir"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-toml" ,python-toml)))
+ (arguments
+ ;; flit-core has a test suite, but it requires Pytest. Disable it so
+ ;; as to not pull pytest as an input.
+ `(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'build
+ ;; flit-core requires itself to build. Luckily, a
+ ;; bootstrapping script exists, which does so using just
+ ;; the checkout sources and Python.
+ (lambda _
+ (invoke "python" "flit_core/build_dists.py")))
+ (replace 'install
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (whl (car (find-files "." "\\.whl$"))))
+ (invoke "pip" "--no-cache-dir" "--no-input"
+ "install" "--no-deps" "--prefix" out whl))))
+ ;; The sanity-check phase fails because flit depends on tomli at
+ ;; run-time, but this core variant avoids it to avoid a cycle.
+ (delete 'sanity-check))))
+ (home-page "https://github.com/takluyver/flit")
+ (synopsis "Core package of the Flit Python build system")
+ (description "This package provides @code{flit-core}, a PEP 517 build
+backend for packages using Flit. The only public interface is the API
+specified by PEP 517, @code{flit_core.buildapi}.")
+ (license license:bsd-3)))
- 75/203: gnu: glibc: Remove unneeded nscd patching., (continued)
- 75/203: gnu: glibc: Remove unneeded nscd patching., guix-commits, 2021/11/03
- 80/203: gnu: diffutils: Update to 3.8., guix-commits, 2021/11/03
- 76/203: gnu: glibc: Look for the current timezone in /etc/localtime., guix-commits, 2021/11/03
- 84/203: gnu: make-ld-wrapper: Add a LINKER argument., guix-commits, 2021/11/03
- 86/203: gnu: gdb: Patch references to /bin/sh and add debug output., guix-commits, 2021/11/03
- 87/203: gnu: gdb: Normalize indentation., guix-commits, 2021/11/03
- 81/203: build: qt-utils: Don't wrap .X-real files., guix-commits, 2021/11/03
- 91/203: gnu: rust: Bootstrap rust from 1.39.0 and optimize build time., guix-commits, 2021/11/03
- 103/203: build: glib-or-gtk-build-system: Simplify the wrap-all-programs phase., guix-commits, 2021/11/03
- 111/203: gnu: colord-minimal: Introduce minimal variant., guix-commits, 2021/11/03
- 97/203: gnu: Add python-flit-core.,
guix-commits <=
- 110/203: gnu: Add docbook-xsl-ns., guix-commits, 2021/11/03
- 105/203: gnu: at-spi2-core: Reverse inheritance relationship with minimal variant., guix-commits, 2021/11/03
- 113/203: gnu: gusb-minimal: Introduce minimal variant., guix-commits, 2021/11/03
- 109/203: gnu: json-glib-minimal: Introduce minimal variant., guix-commits, 2021/11/03
- 98/203: gnu: Add python-tomli., guix-commits, 2021/11/03
- 106/203: gnu: at-spi2-atk: Break a dependency cycle between GTK+ and Inkscape., guix-commits, 2021/11/03
- 92/203: gnu: rust: Add rust 1.54 and move all non-bootstrapping logic to it., guix-commits, 2021/11/03
- 115/203: gnu: inkscape: Remove the legacy 0.92 version., guix-commits, 2021/11/03
- 123/203: gnu: pango: Update to 1.48.10., guix-commits, 2021/11/03
- 116/203: gnu: mesa: Update to 21.2.4., guix-commits, 2021/11/03