diff options
author | EuAndreh <eu@euandre.org> | 2022-06-23 08:06:20 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-06-23 08:06:20 -0300 |
commit | d9e9c85aa6f4eb4105c2da5440e1c2c9be52519d (patch) | |
tree | 8e67d07770621904d32ffe6ad40bfe0cef8897e4 /src/xyz/euandreh/queue.scm | |
parent | src/xyz/euandreh/perl.scm: Add Perl::Critic (diff) | |
download | package-repository-d9e9c85aa6f4eb4105c2da5440e1c2c9be52519d.tar.gz package-repository-d9e9c85aa6f4eb4105c2da5440e1c2c9be52519d.tar.xz |
src/xyz/euandreh/queue.scm: Add python-docx
Diffstat (limited to '')
-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) |