[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55474] [PATCH v5 55/55] gnu: Add python-wagtail-localize.
From: |
Nicolas Graves |
Subject: |
[bug#55474] [PATCH v5 55/55] gnu: Add python-wagtail-localize. |
Date: |
Sun, 25 Jun 2023 18:57:56 +0200 |
* gnu/packages/django.scm (python-wagtail-localize): New variable.
---
gnu/packages/django.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 20a4250b4d..30824efc8a 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1804,3 +1804,43 @@ (define-public python-wagtail-factories
(description "This package provides factory boy classes for
@code{wagtail}. It is used for the migrating streamfields.")
(license license:expat)))
+
+(define-public python-wagtail-localize
+ (package
+ (name "python-wagtail-localize")
+ (version "1.5.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/wagtail/wagtail-localize")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "143rwwz94wlqwbckg8ccfxkn5ydb1mzr9dqn4zldpsrbgg3p4cj6"))))
+ (build-system pyproject-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ ;; TODO Remove this when moving to recent versions of flit-core.
+ (add-after 'unpack 'fix-flit-core-glob
+ (lambda _
+ (substitute* "pyproject.toml"
+ (("wagtail_localize\\/\\*\\*\\/tests")
+ (string-join
+ (find-files "." "tests$" #:directories? #t)
+ "\",\n \"")))))
+ (replace 'check
+ (lambda* (#:key tests? inputs #:allow-other-keys)
+ (if tests?
+ (invoke "python" "testmanage.py")
+ (format #t "test suite not run~%")))))))
+ (propagated-inputs (list python-django python-polib python-wagtail))
+ (native-inputs (list python-dj-database-url
+ python-flit-core
+ python-freezegun
+ python-typing-extensions))
+ (home-page "https://www.wagtail-localize.org")
+ (synopsis "Translating for Wagtail Content Management System (CMS)")
+ (description "This package provides a translation plugin for Wagtail CMS.")
+ (license license:bsd-3)))
--
2.40.1
- [bug#55474] [PATCH v5 44/55] gnu: Add python-willow., (continued)
- [bug#55474] [PATCH v5 44/55] gnu: Add python-willow., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 45/55] gnu: Add python-django-request., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 46/55] gnu: Add python-django-environ., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 42/55] gnu: Add python-parsy., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 49/55] gnu: Add python-anyascii., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 48/55] gnu: Add python-l18n., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 47/55] gnu: Add python-draftjs-exporter., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 50/55] gnu: Add python-telepath., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 51/55] gnu: Add python-django-permissionedforms., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 54/55] gnu: Add python-wagtail-factories., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 55/55] gnu: Add python-wagtail-localize.,
Nicolas Graves <=
- [bug#55474] [PATCH v5 53/55] gnu: Add python-wagtail., Nicolas Graves, 2023/06/25
- [bug#55474] [PATCH v5 52/55] gnu: python-openpyxl: Update to 3.1.2., Nicolas Graves, 2023/06/25