aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/xyz/euandreh/queue.scm154
1 files changed, 10 insertions, 144 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm
index 9605c8e..4f193bb 100644
--- a/src/xyz/euandreh/queue.scm
+++ b/src/xyz/euandreh/queue.scm
@@ -104,20 +104,11 @@ not having a version of grap, so I built one.")
(license license:expat)
(home-page "https://github.com/wooorm/dictionaries")))
-(define-public hunspell-dict-en-utf8
- (hunspell-dictionary-utf8 "en"))
-
-(define-public hunspell-dict-pt-utf8
- (hunspell-dictionary-utf8 "pt"))
-
-(define-public hunspell-dict-fr-utf8
- (hunspell-dictionary-utf8 "fr"))
-
-(define-public hunspell-dict-eo-utf8
- (hunspell-dictionary-utf8 "eo"))
-
-(define-public hunspell-dict-es-utf8
- (hunspell-dictionary-utf8 "es"))
+(define-public hunspell-dict-en-utf8 (hunspell-dictionary-utf8 "en"))
+(define-public hunspell-dict-pt-utf8 (hunspell-dictionary-utf8 "pt"))
+(define-public hunspell-dict-fr-utf8 (hunspell-dictionary-utf8 "fr"))
+(define-public hunspell-dict-eo-utf8 (hunspell-dictionary-utf8 "eo"))
+(define-public hunspell-dict-es-utf8 (hunspell-dictionary-utf8 "es"))
(define-public hunspell-iconv
(package
@@ -127,56 +118,6 @@ not having a version of grap, so I built one.")
`(("libiconv" ,libiconv)
,@(package-inputs hunspell)))))
-;; Wait for upstream to release 0.2.1, or 0.3.0
-(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))))))
-
-;; Wait for python-flake8-implicit-str-concat to be updated to send in one batch
-;; Wait for PR to be merged upstream:
-;; https://github.com/dominickpastore/pymd4c/pull/28
-(define python-pymd4c-latest
- (package
- (inherit python-pymd4c)
- (version "8d58510d801d1765e9f83e3d153fb81a8e3b17a2")
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/dominickpastore/pymd4c")
- (commit version)))
- (sha256
- (base32 "1pj8bhps7421ig3rgwmdxg0974di2l0skyc3kmp0mbk9l9yqig8f"))))))
-
-;; Depends on python-flake8-implicit-str-concat to be updated
-(define-public mdpo-patched
- (package
- (inherit mdpo)
- (name "mdpo-patched")
- (version "0.3.63")
- (source
- (origin
- (method url-fetch)
- (uri
- (pypi-uri "mdpo" version))
- (sha256
- (base32 "0p8nbyqlljqfm38yj2nl2am5bkd1pf37ybwymrhs7dlk04zm9a6b"))))
- (native-inputs
- `(("python-flake8-implicit-str-concat" ,python-flake8-implicit-str-concat-patched)
- ,@(alist-delete "python-flake8-implicit-str-concat"
- (package-native-inputs mdpo))))
- (propagated-inputs
- `(("python-pymd4c" ,python-pymd4c-latest)
- ,@(alist-delete "python-pymd4c"
- (package-propagated-inputs mdpo))))))
-
(define-public python-docx
(package
(name "python-docx")
@@ -193,6 +134,10 @@ not having a version of grap, so I built one.")
`(#:tests? #f))
(propagated-inputs
(list python-lxml))
+ (native-inputs
+ (list python-pytest
+ ;; python-behave
+ python-mock))
(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.")
@@ -347,81 +292,6 @@ collections.OrderedDict that works in Python 2.4-2.6.")
(description "We have made you a wrapper you can't refuse")
(license #f)))
-(define-public python-kaptan
- (package
- (name "python-kaptan")
- (version "0.5.12")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "kaptan" version))
- (sha256
- (base32
- "1lix7hafsqdpdmiyihykymb1x9bp2s02ik0smzjzq8hlfdb1zg8s"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'relax-versions
- (lambda _
- (substitute* "requirements/base.txt"
- (("PyYAML.*") "PyYAML\n"))
- (substitute* "requirements/test.txt"
- (("pytest.*") "pytest\n")))))))
- (native-inputs
- (list python-wheel
- python-pytest))
- (propagated-inputs
- (list python-pyyaml))
- (home-page "https://github.com/emre/kaptan")
- (synopsis "Configuration manager")
- (description "Configuration manager")
- (license license:bsd-3)))
-
-(define-public python-libtmux-latest
- (package
- (name "python-libtmux")
- (version "0.14.2")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "libtmux" version))
- (sha256
- (base32
- "0j4a7xvzhqi1ybf5jgmvraw4c3axbkqndz6fm7560kww26539viq"))))
- (build-system python-build-system)
- (native-inputs
- (list python-pytest
- tmux))
- (home-page "http://github.com/tmux-python/libtmux/")
- (synopsis "Typed scripting library / ORM / API wrapper for tmux")
- (description "Typed scripting library / ORM / API wrapper for tmux")
- (license license:expat)))
-
-(define-public python-tmuxp
- (package
- (name "python-tmuxp")
- (version "1.13.1")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "tmuxp" version))
- (sha256
- (base32
- "0l6bsjz5x0bcssrj1y0rf559d50xrw5zkdblghyzk509aags3sj1"))))
- (build-system python-build-system)
- (native-inputs
- (list python-pytest
- tmux))
- (propagated-inputs
- (list python-click
- python-colorama
- python-kaptan
- python-libtmux-latest))
- (home-page "http://github.com/tmux-python/tmuxp/")
- (synopsis "tmux session manager")
- (description "tmux session manager")
- (license license:expat)))
-
-(define-public tmuxp python-tmuxp)
-
(list
grap
hunspell-iconv
@@ -430,9 +300,5 @@ collections.OrderedDict that works in Python 2.4-2.6.")
hunspell-dict-fr-utf8
hunspell-dict-eo-utf8
hunspell-dict-es-utf8
- python-flake8-implicit-str-concat-patched
- python-pymd4c-latest
- mdpo-patched
python-docx
- python-telegram-bot
- tmuxp)
+ python-telegram-bot)