diff options
Diffstat (limited to 'src/xyz')
-rw-r--r-- | src/xyz/euandreh/queue.scm | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm index b3fb511..c696a9d 100644 --- a/src/xyz/euandreh/queue.scm +++ b/src/xyz/euandreh/queue.scm @@ -24,6 +24,7 @@ #:use-module (gnu packages perl-check) #:use-module (gnu packages python-xyz) #:use-module (gnu packages language) + #:use-module (gnu packages xml) #:use-module (gnu packages markup)) (define-public grap @@ -158,6 +159,26 @@ not having a version of grap, so I built one.") ,@(alist-delete "python-pymd4c" (package-propagated-inputs mdpo)))))) +(define-public python-docx + (package + (name "python-docx") + (version "0.8.11") + (source + (origin + (method url-fetch) + (uri + (pypi-uri "python-docx" version)) + (sha256 + (base32 "1i7bxghb7knlyjain101qg1jmmz2b6qj03bi3vfxhvcml0rx418i")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) + (propagated-inputs + (list python-lxml)) + (home-page "https://github.com/python-openxml/python-docx") + (synopsis "Create and update Microsoft Word .docx files.") + (description "Create and update Microsoft Word .docx files.") + (license #f))) (list grap @@ -168,4 +189,5 @@ not having a version of grap, so I built one.") hunspell-dict-eo-utf8 python-flake8-implicit-str-concat-patched python-pymd4c-latest - mdpo-patched) + mdpo-patched + python-docx) |