skillfed

okonomiyaki

Self-contained library to deal with metadata in Enthought-specific egg and runtime archives

okonomiyaki v3.0.0 282.1K downloads/30d#8,089 on PyPI3
Permissive license BSD-3-Clause AGING released

What it is and what it does

Okonomiyaki is a low-level library for handling Enthought egg archives and runtime metadata. It provides object models for version parsing (supporting EnpkgVersion and PEP 440 formats), platform representation and normalization (handling legacy EDM platform strings like rh5-64 and modern ARM/ARM64 architectures), and egg metadata extraction. The library is designed around immutable, hashable instances suitable for use as dictionary keys.

The package is split into optional extras: the base install provides version parsing only, okonomiyaki[platforms] adds platform detection and normalization, and okonomiyaki[formats] adds egg metadata and archive tools. It supports Python 3.6 through 3.12 and is intended to consolidate Enthought's internal egg and package tooling into a reusable library.

Use it for:

  • Parse and compare version strings in Enthought egg format (e.g., "1.3.3-1") for dependency resolution.
  • Normalize legacy EDM platform identifiers (rh5-64, rh6_x86_64) to canonical forms for cross-platform compatibility.
  • Extract and validate metadata from Enthought .egg archives without manual low-level parsing.
  • Detect the running system's platform and architecture, including ARM64 on Apple Silicon.
  • Build or validate package metadata conforming to pkg-info versions 2.1 through 2.4.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Okonomiyaki parses and manipulates metadata for Enthought egg archives and runtime distributions, including version normalization, platform identification, and package metadata handling.

Yes, if you work with Enthought egg archives or need robust version and platform normalization for EDM/enpkg tooling. The library is stable and supports current Python versions. No, if you need active maintenance or are building on a general-purpose package ecosystem—this is a specialized tool for Enthought's legacy packaging format, not a general dependency.

Install

okonomiyaki on PyPI

pip

pip install okonomiyaki

uv

uv add okonomiyaki

poetry

poetry add okonomiyaki

Installing okonomiyaki

Before you install

Low install friction with no runtime dependencies. Maintenance status is aging—last release was 546 days ago, though the repository remains active with recent commits and no archived status.

License in practice

BSD-3-Clause is permissive; you may use, modify, and distribute the package freely provided you retain the license notice and disclaimer.

Quickstart

pip install okonomiyaki

from okonomiyaki.versions import EnpkgVersion
v1 = EnpkgVersion.from_string("1.3.3-1")
v2 = EnpkgVersion.from_string("1.3.2-3")
assert v1 > v2

Requires Python >= 3.6. Platform and egg metadata features require optional extras (okonomiyaki[platforms] or okonomiyaki[formats]).

Verify before relying

  • Whether the aging maintenance status (546 days since last release) affects stability for current Python 3.10–3.12 environments.
  • Real-world adoption beyond Enthought's internal tooling; popularity tier suggests niche use.

Package facts

License BSD-3-Clause (permissive)
Python support supports the current Python release (>=3.6)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance aging — 546 days since the last release
Last repo commit
First released
Downloads 282,107/month — #8,089 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: okonomiyaki-3.0.0-py2.py3-none-any.whl

Programming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.6Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9

Tags

egg metadata parsingversion normalizationplatform detectionenthought package toolsegg archive handlingpackage metadata extractionedm enpkg compatibility
enthought-ecosystempackage-metadataversion-parsing

More Build Tools packages