aboutsummaryrefslogtreecommitdiff
path: root/src/xyz
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-06-30 13:57:11 -0300
committerEuAndreh <eu@euandre.org>2021-06-30 13:57:17 -0300
commitbfd97c569ee2da1f6b27cb6b8059297dc434e924 (patch)
tree88202d520da2471ccc27695ecc20c297a230863b /src/xyz
parentsrc/xyz/euandreh/pending.scm: Init file, with po4a-text (diff)
downloadpackage-repository-bfd97c569ee2da1f6b27cb6b8059297dc434e924.tar.gz
package-repository-bfd97c569ee2da1f6b27cb6b8059297dc434e924.tar.xz
src/xyz/euandreh/queue.scm: Add mdpo-patched pacakge
Related upstream patch: https://github.com/keisheiled/flake8-implicit-str-concat/pull/28
Diffstat (limited to 'src/xyz')
-rw-r--r--src/xyz/euandreh/queue.scm26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm
index ae7cb6b..cfc1917 100644
--- a/src/xyz/euandreh/queue.scm
+++ b/src/xyz/euandreh/queue.scm
@@ -1,4 +1,5 @@
(define-module (xyz euandreh queue)
+ #:use-module (srfi srfi-1)
#:use-module (srfi srfi-26)
#:use-module (ice-9 match)
#:use-module ((guix licenses) #:prefix license:)
@@ -7,14 +8,17 @@
#:use-module (guix packages)
#:use-module (guix build-system gnu)
#:use-module (guix build-system perl)
+ #:use-module (guix build-system python)
#:use-module (guix build-system trivial)
#:use-module (gnu packages)
#:use-module (gnu packages aspell)
#:use-module (gnu packages base)
#:use-module (gnu packages compression)
+ #:use-module (gnu packages gettext)
#:use-module (gnu packages libreoffice)
#:use-module (gnu packages perl)
#:use-module (gnu packages perl-check)
+ #:use-module (gnu packages python-xyz)
#:use-module (gnu packages language)
#:use-module (gnu packages markup))
@@ -481,6 +485,24 @@ Template::Mustache conforms to v1.1.3 of the Mustache specs.")
`(("libiconv" ,libiconv)
,@(package-inputs hunspell)))))
+(define-public python-flake8-implicit-str-concat-patched
+ (package
+ (inherit python-flake8-implicit-str-concat)
+ (name "python-flake8-implicit-str-concat-patched")
+ (propagated-inputs
+ `(("python-attrs" ,python-attrs-bootstrap)
+ ,@(alist-delete "python-attrs" (package-propagated-inputs
+ python-flake8-implicit-str-concat))))))
+
+(define-public mdpo-patched
+ (package
+ (inherit mdpo)
+ (name "mdpo-patched")
+ (propagated-inputs
+ `(("python-flake8-implicit-str-concat" ,python-flake8-implicit-str-concat-patched)
+ ,@(alist-delete "python-flake8-implicit-str-concat"
+ (package-propagated-inputs mdpo))))))
+
(list
perl-tidy
perl-b-lint
@@ -501,4 +523,6 @@ Template::Mustache conforms to v1.1.3 of the Mustache specs.")
hunspell-dict-en-utf8
hunspell-dict-pt-utf8
hunspell-dict-fr-utf8
- hunspell-dict-eo-utf8)
+ hunspell-dict-eo-utf8
+ python-flake8-implicit-str-concat-patched
+ mdpo-patched)