diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-03-12 20:09:03 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-03-12 20:12:36 +0100 |
| commit | c1868b0dff5a1419485f11cbb3568bfb4b67a630 (patch) | |
| tree | 35d1ce59c4abf5b775c0a7f83f484c18af487795 /gnu/packages/python-xyz.scm | |
| parent | ba55fa7ce6c5d7d00656a6e8bb1b9e055db51e8e (diff) | |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 62362205a58..c9263443fd2 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") |
