This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c1868b0dff gnu: python-yamlcore-0.0.2: Rename to python-yamlcore.
c1868b0dff is described below

commit c1868b0dff5a1419485f11cbb3568bfb4b67a630
Author: Cayetano Santos <[email protected]>
AuthorDate: Thu Mar 12 20:09:03 2026 +0100

    gnu: python-yamlcore-0.0.2: Rename to python-yamlcore.
    
    * gnu/packages/python-xyz.scm (python-yamlcore-0.0.2): Deprecate and
    move from here…
    (python-yamlcore): …to here.  Update to 0.0.4.
    [source]: Switch to git-fetch.
    * gnu/packages/electronics.scm (librelane)[inputs]: Remove
    python-yamlcore-0.0.2; add python-yamlcore.
    
    Change-Id: I207c00a654c8d4964abc8d8441627a56a854eede
---
 gnu/packages/electronics.scm |  2 +-
 gnu/packages/python-xyz.scm  | 22 +++++++++++++---------
 2 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index 6eed8d4bcc..d255370b59 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -1079,7 +1079,7 @@ an embedded event driven algorithm.")
            python-rapidfuzz
            python-rich
            python-semver
-           python-yamlcore-0.0.2
+           python-yamlcore
            ruby
            verilator
            yosys))
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 62362205a5..c9263443fd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -41263,17 +41263,19 @@ you do not want to store entirely on disk or on 
memory.")
     (arguments
      `(#:configure-flags '("PYTHON_VERSION=2")))))
 
-(define-public python-yamlcore-0.0.2
-  ;; This is a pinned version dependency for librelane
+(define-public python-yamlcore
   (package
     (name "python-yamlcore")
-    (version "0.0.2")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "yamlcore" version))
-              (sha256
-               (base32
-                "0vwjiryrx58ycmlbv668izswda4jmdpw7g9cn6bsy5my3iabjblb"))))
+    (version "0.0.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/perlpunk/pyyaml-core";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "03y7fabyky67cw4g71xcbwfdal79wxcnmr303qyllz21x2d4s5ac"))))
     (build-system pyproject-build-system)
     (native-inputs (list python-setuptools))
     (inputs (list python-pyyaml))
@@ -41283,6 +41285,8 @@ you do not want to store entirely on disk or on 
memory.")
 files.")
     (license license:expat)))
 
+(define-deprecated-package python-yamlcore-0.0.2 python-yamlcore)
+
 (define-public shrinkwrap
   (package
     (name "shrinkwrap")

Reply via email to