guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/15: gnu: python-pluggy: Move to (gnu packages python-build).


From: guix-commits
Subject: 04/15: gnu: python-pluggy: Move to (gnu packages python-build).
Date: Sun, 2 Apr 2023 06:49:08 -0400 (EDT)

lilyp pushed a commit to branch clinguin
in repository guix.

commit b553af541bbeb854fc12bda1ee77a39ca9da7ca8
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sat Mar 18 08:44:28 2023 +0100

    gnu: python-pluggy: Move to (gnu packages python-build).
    
    * gnu/packages/python-xyz.scm (python-pluggy, python-pluggy-next): Move from
    here…
    * gnu/packages/python-build.scm (python-pluggy, python-pluggy-next): …to 
here.
    Reindent using Emacs.
---
 gnu/packages/python-build.scm | 33 +++++++++++++++++++++++++++++++++
 gnu/packages/python-xyz.scm   | 33 ---------------------------------
 2 files changed, 33 insertions(+), 33 deletions(-)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index a4be4b4991..1281824a97 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -589,3 +589,36 @@ reflected in the package visible to Python, without 
needing a reinstall.")
 specified patterns.  It is currently limited to wildmatch-style patterns,
 which are used e.g. in .gitignore files.")
     (license license:mpl2.0)))
+
+(define-public python-pluggy
+  (package
+    (name "python-pluggy")
+    (version "0.13.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pluggy" version))
+       (sha256
+        (base32
+         "1c35qyhvy27q9ih9n899f3h4sdnpgq027dbiilly2qb5cvgarchm"))))
+    (build-system python-build-system)
+    (native-inputs
+     (list python-setuptools-scm))
+    (synopsis "Plugin and hook calling mechanism for Python")
+    (description "Pluggy is an extraction of the plugin manager as used by
+Pytest but stripped of Pytest specific details.")
+    (home-page "https://pypi.org/project/pluggy/";)
+    (license license:expat)))
+
+;;; TODO: Make this the default python-pluggy in the next rebuild cycle.
+(define-public python-pluggy-next
+  (package
+    (inherit python-pluggy)
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pluggy" version))
+       (sha256
+        (base32
+         "0n8iadlas2z1b4h0fc73b043c7iwfvx9rgvqm1azjmffmhxkf922"))))))
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index df6dfb785b..0d9ba6173d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15536,39 +15536,6 @@ library as well as on the command line.")
    (home-page "https://stuvel.eu/rsa";)
    (license license:asl2.0)))
 
-(define-public python-pluggy
-  (package
-   (name "python-pluggy")
-   (version "0.13.1")
-   (source
-    (origin
-     (method url-fetch)
-     (uri (pypi-uri "pluggy" version))
-     (sha256
-      (base32
-       "1c35qyhvy27q9ih9n899f3h4sdnpgq027dbiilly2qb5cvgarchm"))))
-   (build-system python-build-system)
-   (native-inputs
-    (list python-setuptools-scm))
-   (synopsis "Plugin and hook calling mechanism for Python")
-   (description "Pluggy is an extraction of the plugin manager as used by
-Pytest but stripped of Pytest specific details.")
-   (home-page "https://pypi.org/project/pluggy/";)
-   (license license:expat)))
-
-;;; TODO: Make this the default python-pluggy in the next rebuild cycle.
-(define-public python-pluggy-next
-  (package
-   (inherit python-pluggy)
-   (version "1.0.0")
-   (source
-    (origin
-     (method url-fetch)
-     (uri (pypi-uri "pluggy" version))
-     (sha256
-      (base32
-       "0n8iadlas2z1b4h0fc73b043c7iwfvx9rgvqm1azjmffmhxkf922"))))))
-
 (define-public python-plumbum
   (package
     (name "python-plumbum")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]