[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55474] [PATCH v2 15/17] gnu: Add python-telepath.
From: |
Nicolas Graves |
Subject: |
[bug#55474] [PATCH v2 15/17] gnu: Add python-telepath. |
Date: |
Tue, 9 Aug 2022 19:13:30 +0200 |
* gnu/packages/django.scm (python-telepath): New variable.
---
gnu/packages/django.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 9fe6de74fa..8400d96898 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1485,3 +1485,32 @@ (define-public python-django-svg-image-form-field
models that use Django's standard @code{ImageField}, in addition to the
image files already supported by it.")
(license license:expat)))
+
+(define-public python-telepath
+ (package
+ (name "python-telepath")
+ (version "0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "telepath" version))
+ (sha256
+ (base32 "0k7q5dqgvcwnslb82ah0g6p772jzjmb6fd4wcdc8r46ibsjg4k7g"))))
+ (build-system python-build-system)
+ (native-inputs (list python-django python-pytest-django))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? inputs #:allow-other-keys)
+ (if tests?
+ (lambda _
+ (setenv "DJANGO_SETTINGS_MODULE" "telepath.test_settings")
+ (invoke "django-admin" "test" "--pythonpath=."))
+ (format #t "test suite not run~%")))))))
+ (home-page "https://github.com/wagtail/telepath")
+ (synopsis "Exchanging data between Python and JavaScript")
+ (description
+ "This package provides @code{telepath}, a library for exchanging data
+between Python and JavaScript.")
+ (license license:bsd-3)))
--
2.37.1
- [bug#55474] [PATCH v2 09/17] gnu: Add python-psycopg2-2.8., (continued)
- [bug#55474] [PATCH v2 09/17] gnu: Add python-psycopg2-2.8., Nicolas Graves, 2022/08/09
- [bug#55474] [PATCH v2 05/17] gnu: Add python-jinjalint., Nicolas Graves, 2022/08/09
- [bug#55474] [PATCH v2 06/17] gnu: Add python-willow., Nicolas Graves, 2022/08/09
- [bug#55474] [PATCH v2 10/17] gnu: Add python-beautifulsoup4-4.8., Nicolas Graves, 2022/08/09
- [bug#55474] [PATCH v2 12/17] gnu: Add python-l18n., Nicolas Graves, 2022/08/09
- [bug#55474] [PATCH v2 11/17] gnu: Add python-draftjs-exporter., Nicolas Graves, 2022/08/09
- [bug#55474] [PATCH v2 13/17] gnu: Add python-parsy., Nicolas Graves, 2022/08/09
- [bug#55474] [PATCH v2 14/17] gnu: Add python-anyascii., Nicolas Graves, 2022/08/09
- [bug#55474] [PATCH v2 17/17] gnu: Add python-wagtail-localize., Nicolas Graves, 2022/08/09
- [bug#55474] [PATCH v2 16/17] gnu: Add python-wagtail., Nicolas Graves, 2022/08/09
- [bug#55474] [PATCH v2 15/17] gnu: Add python-telepath.,
Nicolas Graves <=