guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 36ee8208b59d117acd05adb998efd03e57f38a89
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Feb 17 17:12:24 2026 +0100
gnu: Add python-okonomiyaki.
* gnu/packages/python-xyz.scm (python-okonomiyaki): New variable.
Merges guix/guix!6509
Change-Id: I66833bfdffc71276df35b2521516de95af6347af
---
gnu/packages/python-xyz.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c4f9a1704f..106bb4ce09 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18265,6 +18265,46 @@ features, such as project-specific plugins.")
@code{ZipFile}. It provides handling of symlinks, and exception management.")
(license license:psfl)))
+(define-public python-okonomiyaki
+ (package
+ (name "python-okonomiyaki")
+ (version "3.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/enthought/okonomiyaki/")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0dx8smrairxcjqjisvvgwmj4nch12v03b779agjws87yv96ps0f4"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Unknown platform.
+ (add-before 'check 'delete-fail-tests
+ (lambda _
+ (delete-file-recursively
+ "okonomiyaki/runtimes/tests/test_runtime.py"))))))
+ (native-inputs
+ (list python-distro
+ python-haas
+ python-jsonschema
+ python-packaging
+ python-parameterized
+ python-pytest
+ python-setuptools
+ python-testfixtures
+ python-zipfile2))
+ (home-page "https://github.com/enthought/okonomiyaki/")
+ (synopsis "Python library to deal with Enthought-specific metadata")
+ (description
+ "Okonomiyaki is a self-contained library aiming at consolidating
+low-level code used in Enthought-specific egg and runtime archives.")
+ (license license:bsd-3)))
+
(define-public python-nbconvert
(package
(name "python-nbconvert")