[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55474] [PATCH v4 10/19] gnu: Add python-draftjs-exporter.
From: |
Nicolas Graves |
Subject: |
[bug#55474] [PATCH v4 10/19] gnu: Add python-draftjs-exporter. |
Date: |
Mon, 5 Jun 2023 18:25:05 +0200 |
* gnu/packages/python-xyz.scm (python-draftjs-exporter): New variable.
---
gnu/packages/python-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 34adfded09..8f064f5a92 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9197,6 +9197,42 @@ (define-public python-decorator
etc. The core of this module is a decorator factory.")
(license license:expat)))
+(define-public python-draftjs-exporter
+ (package
+ (name "python-draftjs-exporter")
+ (version "2.1.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append
+ "https://github.com/springload/draftjs_exporter"
+ "/archive/refs/tags/v" version ".tar.gz"))
+ (sha256
+ (base32 "02fjmzagvnc146zqhc0xg6mybrkjg3pc7wbl4pmbq4gvmwjsml4c"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-beautifulsoup4
+ python-html5lib
+ python-lxml))
+ (arguments
+ `(#:test-flags '("-m" "unittest" "discover"
+ ;; FIXME disabling two unexpected failing tests
+ "-k" "not test_export_lxml_big_content_export"
+ "-k" "not test_export_lxml_entity_with_data-*")
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? test-flags #:allow-other-keys)
+ (if tests?
+ (apply invoke "python" test-flags)
+ (format #t "test suite not run~%")))))))
+ (home-page "https://github.com/springload/draftjs_exporter")
+ (synopsis
+ "Library to convert rich text from Draft.js raw ContentState to HTML")
+ (description
+ "This package provides a python library to convert rich text from
Draft.js raw
+ContentState to HTML.")
+ (license license:expat)))
(define-public python-drmaa
(package
--
2.40.1
- [bug#55474] [PATCH v4 01/19] gnu: python-django-taggit: Update to 3.1.0., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 03/19] gnu: Add python-django-modelcluster., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 04/19] gnu: Add python-django-treebeard., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 07/19] gnu: Add python-willow., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 02/19] gnu: python-django-filter: Update to 22.1., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 05/19] gnu: Add python-parsy., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 06/19] gnu: Add python-jinjalint., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 11/19] gnu: Add python-l18n., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 08/19] gnu: Add python-django-request., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 09/19] gnu: Add python-django-environ., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 10/19] gnu: Add python-draftjs-exporter.,
Nicolas Graves <=
- [bug#55474] [PATCH v4 12/19] gnu: Add python-anyascii., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 13/19] gnu: Add python-telepath., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 15/19] gnu: python-openpyxl: Update to 3.1.2., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 14/19] gnu: Add python-django-permissionedforms., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 18/19] gnu: Add python-wagtail-factories., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 17/19] gnu: Add python-wagtail., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 16/19] gnu: python-django-4.0: Update to 4.0.9., Nicolas Graves, 2023/06/05
- [bug#55474] [PATCH v4 19/19] gnu: Add python-wagtail-localize., Nicolas Graves, 2023/06/05