[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55474] [PATCH v5 53/55] gnu: Add python-wagtail.
From: |
Nicolas Graves |
Subject: |
[bug#55474] [PATCH v5 53/55] gnu: Add python-wagtail. |
Date: |
Sun, 25 Jun 2023 18:57:54 +0200 |
* gnu/packages/django.scm (python-wagtail): New variable.
---
gnu/packages/django.scm | 70 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 70 insertions(+)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 74a1b7366a..924e1ab6b3 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1696,3 +1696,73 @@ (define-public python-telepath
"This package provides @code{telepath}, a library for exchanging data
between Python and JavaScript.")
(license license:bsd-3)))
+
+(define-public python-wagtail
+ (package
+ (name "python-wagtail")
+ (version "5.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "wagtail" version))
+ (sha256
+ (base32 "1fyjxb4g0mnmpr802jddylj6lc2fy4pf3zazsr2k9nx5hzgj3gfy"))))
+ (build-system pyproject-build-system)
+ (arguments
+ `(#:test-flags '("--pythonpath=."
+ "--settings=wagtail.test.settings"
+ ;; disabling failing azure tests
+ "-k" "not test_azure_cdn_get_client"
+ "-k" "not test_azure_cdn_purge"
+ "-k" "not test_azure_front_door_get_client"
+ "-k" "not test_azure_front_door_purge")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'hiding-failing-tests-imports
+ (lambda _
+ (substitute* "wagtail/contrib/frontend_cache/tests.py"
+ (("from azure" all)
+ (string-append "#" all)))))
+ (replace 'check
+ (lambda* (#:key tests? test-flags #:allow-other-keys)
+ (if tests?
+ (apply invoke "django-admin" "test" test-flags)))))))
+ (propagated-inputs
+ (list python-anyascii
+ python-beautifulsoup4
+ python-django-4.0
+ python-django-filter
+ python-django-modelcluster
+ python-django-taggit
+ python-django-permissionedforms
+ python-django-treebeard
+ python-django-rest-framework
+ python-draftjs-exporter
+ python-html5lib
+ python-l18n
+ python-openpyxl
+ python-pillow
+ python-requests
+ python-telepath
+ python-willow))
+ (native-inputs
+ ;; python-azure-mgmt-cdn ;failing tests
+ ;; python-azure-mgmt-frontdoor ;failing tests
+ (list python-boto3
+ python-dateutil
+ python-doc8
+ python-docutils
+ python-elasticsearch
+ python-freezegun
+ python-isort
+ python-jinja2
+ python-jinjalint
+ python-polib
+ python-pytz
+ python-unidecode
+ python-wagtail-factories))
+ (home-page "https://wagtail.org/")
+ (synopsis "A Content Management System (CMS)")
+ (description "This package provides a Content Management System based on
+Django.")
+ (license license:bsd-3)))
--
2.40.1
- [bug#55474] [PATCH v5 45/55] gnu: Add python-django-request., (continued)
- [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, 2023/06/25
- [bug#55474] [PATCH v5 53/55] gnu: Add python-wagtail.,
Nicolas Graves <=
- [bug#55474] [PATCH v5 52/55] gnu: python-openpyxl: Update to 3.1.2., Nicolas Graves, 2023/06/25