aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix')
0 files changed, 0 insertions, 0 deletions
fficient. With this package, we create a single \"gettext domain\" for every supported ISO standard which contains the translations of that domain. It is easy for a programmer to re-use those translations instead of maintaining their own translation infrastructure. Moreover, the programmer does not need to follow changes in the ISO standard and will not work with outdated information.") (license license:gpl2+))) ; some bits use the lgpl2 (define-public iso-codes ;; This package should be used universally within Guix, e.g., as an input to ;; other Guix packages or in the Guix System installer's country selector. (hidden-package (package (inherit iso-codes/official) (source (origin (inherit (package-source iso-codes/official)) (modules '((guix build utils))) (snippet '(begin (substitute* (find-files "." "\\.po$") (("#.*Name for TWN,.*") "") (("^msgid \"Taiwan, .*") "# Guix doesn't use ")) (substitute* "data/iso_3166-1.json" (("(Taiwan), [^\"]*" _ name) name)))))) (synopsis "Various ISO standards as used by GNU@tie{}Guix")))) (define-public python-iso639 (package (name "python-iso639") (version "0.4.5") (source (origin (method url-fetch) (uri (pypi-uri "iso-639" version)) (sha256 (base32 "0jffmh4m20q8j27xb2fqbnlghjj0cx8pgsbzqisdg65qh2wd976w")))) (build-system python-build-system) (home-page "https://github.com/noumar/iso639") (synopsis "Python library for ISO 639 standard") (description "This package provides a Python library for ISO 639 standard that is concerned with representation of names for languages and language groups.") (license license:agpl3+))) (define-public python-iso3166 (package (name "python-iso3166") (version "2.1.1") (source (origin (method url-fetch) (uri (pypi-uri "iso3166" version)) (sha256 (base32 "068p94gavc8gbmp5a2kw8hi5l551wfzbpmp6z7ll8sx6vnw53mgw")))) (build-system python-build-system) (home-page "https://github.com/deactivated/python-iso3166") (synopsis "Self-contained ISO 3166-1 country definitions") (description "This package provides the ISO 3166-1 country definitions.") (license license:expat)))