guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 7425e7e03ae78cf3a3d9f450b4578740e8f221e9
Author: Gabriel Wicki <[email protected]>
AuthorDate: Thu Jan 15 17:22:06 2026 +0100
gnu: Add python-yamlcore-0.0.2.
* gnu/packages/python-xyz.scm (python-yamlcore-0.0.2): New variable.
Merges guix/guix!5641
Change-Id: I5a52801c4a892f5325997cca60ea08e3e137f56e
Signed-off-by: Cayetano Santos <[email protected]>
---
gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e1f2de576b..1bd2ff2d30 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -41261,6 +41261,26 @@ 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
+ (package
+ (name "python-yamlcore")
+ (version "0.0.2")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "yamlcore" version))
+ (sha256
+ (base32
+ "0vwjiryrx58ycmlbv668izswda4jmdpw7g9cn6bsy5my3iabjblb"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-setuptools))
+ (inputs (list python-pyyaml))
+ (home-page "https://github.com/perlpunk/pyyaml-core")
+ (synopsis "YAML 1.2 support for PyYAML")
+ (description "This module can be used on top of PyYAML to load YAML 1.2
+files.")
+ (license license:expat)))
+
(define-public shrinkwrap
(package
(name "shrinkwrap")