diff options
author | Franz Geffke <franz@pantherx.org> | 2024-03-30 16:58:33 +0000 |
---|---|---|
committer | Franz Geffke <franz@pantherx.org> | 2024-03-30 16:58:33 +0000 |
commit | f94211d93e9753f1541f9c6e6905e882f893779a (patch) | |
tree | 764b04bc3e85fa825436e72391569f23af0373da | |
parent | 697ed2e2789614a0a40be27f845a78eab1dc3fa6 (diff) |
python-flask-babelex: move to python-xyz module
-rw-r--r-- | px/packages/etesync.scm | 19 | ||||
-rw-r--r-- | px/packages/python-xyz.scm | 21 |
2 files changed, 20 insertions, 20 deletions
diff --git a/px/packages/etesync.scm b/px/packages/etesync.scm index fb3b5d1..14a4aed 100644 --- a/px/packages/etesync.scm +++ b/px/packages/etesync.scm @@ -124,25 +124,6 @@ It currently implements AddressBook and Calendar access, and supports two-way sync (both push and pull) to the server.") (license license:gpl3))) -;; python-flask-wtf tests require python-flask-babelex -(define-public python-flask-babelex - (package - (name "python-flask-babelex") - (version "0.9.4") - (source - (origin - (method url-fetch) - (uri (pypi-uri "Flask-BabelEx" version)) - (sha256 - (base32 "09yfr8hlwvpgvq8kp1y7qbnnl0q28hi0348bv199ssiqx779r99r")))) - (build-system python-build-system) - (propagated-inputs (list python-babel python-flask python-jinja2 - python-speaklater)) - (home-page "http://github.com/mrjoes/flask-babelex") - (synopsis "Adds i18n/l10n support to Flask applications") - (description "Adds i18n/l10n support to Flask applications") - (license license:bsd-3))) - ;; etesync-dav: Requirement.parse('Radicale==3.0.3'), {'etesync-dav'}) (define-public radicale-3.0.3 (package diff --git a/px/packages/python-xyz.scm b/px/packages/python-xyz.scm index 246f412..2f8d075 100644 --- a/px/packages/python-xyz.scm +++ b/px/packages/python-xyz.scm @@ -997,4 +997,23 @@ upload, and reCAPTCHA.") "implements a lazy string for python useful for use with gettext") (description "implements a lazy string for python useful for use with gettext") - (license #f)))
\ No newline at end of file + (license #f))) + +;; python-flask-wtf tests require python-flask-babelex +(define-public python-flask-babelex + (package + (name "python-flask-babelex") + (version "0.9.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Flask-BabelEx" version)) + (sha256 + (base32 "09yfr8hlwvpgvq8kp1y7qbnnl0q28hi0348bv199ssiqx779r99r")))) + (build-system python-build-system) + (propagated-inputs (list python-babel python-flask python-jinja2 + python-speaklater)) + (home-page "http://github.com/mrjoes/flask-babelex") + (synopsis "Adds i18n/l10n support to Flask applications") + (description "Adds i18n/l10n support to Flask applications") + (license license:bsd-3)))
\ No newline at end of file |