summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorGabriel Wicki <gabriel@erlikon.ch>2026-01-15 17:22:06 +0100
committerCayetano Santos <csantosb@inventati.org>2026-03-06 09:26:02 +0100
commit7425e7e03ae78cf3a3d9f450b4578740e8f221e9 (patch)
tree490d592e97cd34665cbd1d3c140f2a357b15e478 /gnu/packages/python-xyz.scm
parent78276ee606a2983205a9c6e1e9fdf7c424a2842a (diff)
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 <csantosb@inventati.org>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e1f2de576bd..1bd2ff2d30d 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")