diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-02-17 17:12:24 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-02-18 11:32:51 +0100 |
| commit | 36ee8208b59d117acd05adb998efd03e57f38a89 (patch) | |
| tree | 1ffd4fdba12c852f77551a82077ede67426fb180 /gnu/packages/python-xyz.scm | |
| parent | 5c07f94aedb7eb1437116c0711b060c8d0d2673d (diff) | |
gnu: Add python-okonomiyaki.
* gnu/packages/python-xyz.scm (python-okonomiyaki): New variable.
Merges guix/guix!6509
Change-Id: I66833bfdffc71276df35b2521516de95af6347af
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c4f9a1704f6..106bb4ce09b 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") |
