diff options
author | Greg Hogan <code@greghogan.com> | 2023-03-24 13:23:29 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-05-14 23:14:25 +0200 |
commit | 7070d3d9e8b3bfa8393cdcbe2949beb948452ea9 (patch) | |
tree | 211ca0f5bf545464ae88594c17f2e22890ce8df6 /gnu | |
parent | b37303f06d998a71ce6c313ffbd3fdfd1001048c (diff) | |
download | guix-7070d3d9e8b3bfa8393cdcbe2949beb948452ea9.tar.gz |
gnu: Add python-agate-locales.
* gnu/packages/wireservice.scm (python-agate-locales): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/wireservice.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/wireservice.scm b/gnu/packages/wireservice.scm index 5878142821..f18f2b9ee7 100644 --- a/gnu/packages/wireservice.scm +++ b/gnu/packages/wireservice.scm @@ -26,6 +26,7 @@ #:use-module (guix git-download) #:use-module (guix packages) #:use-module (gnu packages) + #:use-module (gnu packages base) #:use-module (gnu packages check) #:use-module (gnu packages databases) #:use-module (gnu packages python-web) @@ -88,6 +89,12 @@ (description "Leather is a Python charting library for those who need charts now and don't care if they're perfect."))) +(define python-agate-locales + (make-glibc-utf8-locales + glibc + #:locales (list "ko_KR") + #:name "python-agate-locales")) + (define-public python-agate (wireservice-package (name "python-agate") |