/** * **pytz** - pytz Python historical timezone library and database * * @domain `github.com/stub42/pytz` * @version `2025.2.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/stub42/pytz` * @dependencies `python.org~3.12` * @buildDependencies `linux:gnu.org/gawk`, `linux:rsync.samba.org` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomstub42pytz * console.log(pkg.name) // "pytz" * console.log(pkg.description) // "pytz Python historical timezone library and dat..." * console.log(pkg.versions[0]) // "2025.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/stub42/pytz.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pytzPackage: { /** * The display name of this package. */ name: 'pytz'; /** * The canonical domain name for this package. */ domain: 'github.com/stub42/pytz'; /** * Brief description of what this package does. */ description: 'pytz Python historical timezone library and database'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/stub42/pytz/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/stub42/pytz'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/stub42/pytz'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/stub42/pytz -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/stub42/pytz'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org~3.12']; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['linux:gnu.org/gawk', 'linux:rsync.samba.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2025.2.0', '2025.1.0', '2024.2.0', '2024.1.0']; aliases: readonly [] }; export type PytzPackage = typeof pytzPackage