unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Liliana Marie Prikler <liliana.prikler@gmail.com>
To: 62252@debbugs.gnu.org
Cc: Ricardo Wurmus <rekado@elephly.net>
Subject: [bug#62252] [PATCH v3 10/19] gnu: python-hatchling: Move to (gnu packages build).
Date: Sat, 18 Mar 2023 08:44:38 +0100	[thread overview]
Message-ID: <3ca36fd7926540f4a95e61509ff2be02847b7c51.camel@gmail.com> (raw)
In-Reply-To: <291d52e688bb1d56ecd6561282fd9713bf237ed9.camel@gmail.com>

* gnu/packages/python-xyz.scm (python-hatchling): Move from here…
* gnu/packages/python-build.scm (python-hatchling): … to here.
[propagated-inputs]: Remove python-importlib-metadata.
Replace python-packaging with python-packaging-bootstrap.
[arguments]: Clarify #:tests?.
Rename ‘do-not-depend-on-hatchling’ to ‘bootstrap-without-hatchling’.
---
 gnu/packages/python-build.scm | 48 +++++++++++++++++++++++++++++++++++
 gnu/packages/python-xyz.scm   | 45 --------------------------------
 2 files changed, 48 insertions(+), 45 deletions(-)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 1281824a97..eb864d8ad6 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -28,6 +28,7 @@ (define-module (gnu packages python-build)
   #:use-module (gnu packages)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix build-system python)
+  #:use-module (guix build-system pyproject)
   #:use-module (guix gexp)
   #:use-module (guix download)
   #:use-module (guix git-download)
@@ -622,3 +623,50 @@ (define-public python-pluggy-next
        (sha256
         (base32
          "0n8iadlas2z1b4h0fc73b043c7iwfvx9rgvqm1azjmffmhxkf922"))))))
+
+(define-public python-hatchling
+  (package
+    (name "python-hatchling")
+    (version "1.13.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "hatchling" version))
+              (sha256
+               (base32
+                "1isk1kqra0sm2sj2yp39sgk62mx0bp1jnbkwdcl3a1vjrji7blpq"))))
+    (arguments
+     (list
+     ;; Tests don't appear to be integrated into build.
+     ;; Also, we can't rely on python-pytest anyway, as that's in
+     ;; (gnu packages python-check)...
+      #:tests? #false
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'bootstrap-without-hatchling
+            (lambda _
+              ;; We don't use hatchling.
+              (delete-file "pyproject.toml")
+              (call-with-output-file "pyproject.toml"
+                (lambda (port)
+                  (format port "\
+[build-system]
+build-backend = 'setuptools.build_meta'
+requires = ['setuptools']
+")))
+              (call-with-output-file "setup.cfg"
+                (lambda (port)
+                  (format port "\
+[metadata]
+name = hatchling
+version = '~a' " #$version))))))))
+    (propagated-inputs
+     (list python-editables
+           python-pathspec
+           python-packaging-bootstrap
+           python-pluggy
+           python-tomli))
+    (build-system pyproject-build-system)
+    (home-page "https://hatch.pypa.io/")
+    (synopsis "Extensible Python build backend")
+    (description "Hatchling is an extensible Python build backend.")
+    (license license:expat)))
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 659339d2a5..f78eef2744 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1755,51 +1755,6 @@ (define-public python-boolean.py
 Expressions are constructed from parsed strings or directly in Python.")
     (license license:bsd-2)))
 
-(define-public python-hatchling
-  (package
-    (name "python-hatchling")
-    (version "1.13.0")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "hatchling" version))
-              (sha256
-               (base32
-                "1isk1kqra0sm2sj2yp39sgk62mx0bp1jnbkwdcl3a1vjrji7blpq"))))
-    (build-system pyproject-build-system)
-    (arguments
-     (list
-      #:tests? #false ;there are none
-      #:phases
-      #~(modify-phases %standard-phases
-          (add-after 'unpack 'do-not-depend-on-hatchling
-            (lambda _
-              ;; We don't use hatchling.
-              (delete-file "pyproject.toml")
-              (call-with-output-file "pyproject.toml"
-                (lambda (port)
-                  (format port "\
-[build-system]
-build-backend = 'setuptools.build_meta'
-requires = ['setuptools']
-")))
-              (call-with-output-file "setup.cfg"
-                (lambda (port)
-                  (format port "\
-[metadata]
-name = hatchling
-version = '~a' " #$version))))))))
-    (propagated-inputs
-     (list python-editables
-           python-importlib-metadata
-           python-packaging
-           python-pathspec
-           python-pluggy
-           python-tomli))
-    (home-page "https://hatch.pypa.io/")
-    (synopsis "Extensible Python build backend")
-    (description "Hatchling is an extensible Python build backend.")
-    (license license:expat)))
-
 (define-public python-hdf4
   (package
    (name "python-hdf4")
-- 
2.39.2





  parent reply	other threads:[~2023-03-26  6:39 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-18  9:24 [bug#62252] [PATCH 00/19] Add python-clinguin Liliana Marie Prikler
2023-03-17 19:19 ` [bug#62252] [PATCH v2 07/19] gnu: Add python-pluggy-next Felix Gruber
2023-03-17 19:19 ` [bug#62252] [PATCH " Felix Gruber
2023-03-18  6:49 ` [bug#62252] [PATCH 01/19] gnu: Add python-imageio-ffmpeg Liliana Marie Prikler
2023-03-18  6:49 ` [bug#62252] [PATCH v3 " Liliana Marie Prikler
2023-03-18  6:49 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  6:51 ` [bug#62252] [PATCH v3 02/19] gnu: python-imageio: Update to 2.26.0 Liliana Marie Prikler
2023-03-18  6:51 ` [bug#62252] [PATCH " Liliana Marie Prikler
2023-03-18  6:51 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  7:23 ` [bug#62252] [PATCH v3 03/19] gnu: Separate potassco packages into their own module Liliana Marie Prikler
2023-03-18  7:23 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  7:23 ` [bug#62252] [PATCH " Liliana Marie Prikler
2023-03-18  7:34 ` [bug#62252] [PATCH 04/19] gnu: Add python-clingraph Liliana Marie Prikler
2023-03-18  7:34 ` [bug#62252] [PATCH v3 " Liliana Marie Prikler
2023-03-18  7:34 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  7:34 ` [bug#62252] [PATCH v3 05/19] gnu: python-pathspec: Update to 0.11.0 Liliana Marie Prikler
2023-03-18  7:34 ` [bug#62252] [PATCH " Liliana Marie Prikler
2023-03-18  7:34 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  7:34 ` [bug#62252] [PATCH v3 06/19] gnu: python-pathspec: Revise description Liliana Marie Prikler
2023-03-18  7:34 ` [bug#62252] [PATCH " Liliana Marie Prikler
2023-03-18  7:34 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  7:43 ` [bug#62252] [PATCH v3 07/19] gnu: python-pathspec: Move to (gnu packages python-build) Liliana Marie Prikler
2023-03-18  7:43 ` [bug#62252] [PATCH v2 08/19] " Liliana Marie Prikler
2023-03-18  7:43 ` [bug#62252] [PATCH " Liliana Marie Prikler
2023-03-18  7:44 ` [bug#62252] [PATCH 09/19] gnu: python-pluggy: " Liliana Marie Prikler
2023-03-18  7:44 ` [bug#62252] [PATCH v3 08/19] " Liliana Marie Prikler
2023-03-18  7:44 ` [bug#62252] [PATCH v2 09/19] " Liliana Marie Prikler
2023-03-18  7:44 ` Liliana Marie Prikler [this message]
2023-03-18  7:44 ` [bug#62252] [PATCH 10/19] gnu: Add python-hatchling Liliana Marie Prikler
2023-03-18  7:44 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  7:48 ` [bug#62252] [PATCH v3 11/19] gnu: python-starlette: Update to 0.25.0 Liliana Marie Prikler
2023-03-18  7:48 ` [bug#62252] [PATCH " Liliana Marie Prikler
2023-03-18  7:48 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  7:51 ` [bug#62252] [PATCH v3 12/19] gnu: python-sqlalchemy: Update to 1.4.42 Liliana Marie Prikler
2023-03-18  7:51 ` [bug#62252] [PATCH " Liliana Marie Prikler
2023-03-18  7:51 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  7:57 ` [bug#62252] [PATCH v3 14/19] gnu: python-aiomysql: Update to 0.1.1 Liliana Marie Prikler
2023-03-18  7:57 ` [bug#62252] [PATCH " Liliana Marie Prikler
2023-03-18  7:57 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  8:19 ` [bug#62252] [PATCH 13/19] gnu: python-pymysql: Update to 1.0.2 Liliana Marie Prikler
2023-03-18  8:19 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  8:19 ` [bug#62252] [PATCH v3 " Liliana Marie Prikler
2023-03-18  8:43 ` [bug#62252] [PATCH 15/19] gnu: python-aiosqlite: Update to 0.18.0 Liliana Marie Prikler
2023-03-18  8:43 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  8:43 ` [bug#62252] [PATCH v3 " Liliana Marie Prikler
2023-03-18  8:47 ` [bug#62252] [PATCH v3 16/19] gnu: python-databases: Update to 0.7.0 Liliana Marie Prikler
2023-03-18  8:47 ` [bug#62252] [PATCH " Liliana Marie Prikler
2023-03-18  8:47 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  8:48 ` [bug#62252] [PATCH v3 17/19] gnu: python-databases: Revise description Liliana Marie Prikler
2023-03-18  8:48 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  8:48 ` [bug#62252] [PATCH " Liliana Marie Prikler
2023-03-18  8:59 ` [bug#62252] [PATCH 18/19] gnu: Add python-fastapi Liliana Marie Prikler
2023-03-18  8:59 ` [bug#62252] [PATCH v3 " Liliana Marie Prikler
2023-03-18  8:59 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-18  9:01 ` [bug#62252] [PATCH 19/19] gnu: Add python-clinguin Liliana Marie Prikler
2023-03-18  9:01 ` [bug#62252] [PATCH v3 " Liliana Marie Prikler
2023-03-18  9:01 ` [bug#62252] [PATCH v2 " Liliana Marie Prikler
2023-03-26  6:19 ` [bug#62252] [PATCH v3 09/19] gnu: python-hatchling: Use upstream homepage Liliana Marie Prikler
2023-03-26  7:55   ` Ricardo Wurmus
2023-03-26  8:23     ` Liliana Marie Prikler
2023-03-26 10:14       ` Ricardo Wurmus
2023-04-02 10:49         ` Liliana Marie Prikler
2023-05-09 17:57 ` bug#62252: [PATCH 00/19] Add python-clinguin Ricardo Wurmus
2023-05-09 19:45   ` [bug#62252] " Liliana Marie Prikler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3ca36fd7926540f4a95e61509ff2be02847b7c51.camel@gmail.com \
    --to=liliana.prikler@gmail.com \
    --cc=62252@debbugs.gnu.org \
    --cc=rekado@elephly.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).