summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-29 08:16:16 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-30 14:35:41 +0100
commitdcb6d77a075855d1ccfe699757e13ad174e54cf6 (patch)
tree1acc804aa402014e7eabdfff8c3f304e8c8feded
parentf53ab0d811c2882723fe8e53d61f36b1634e8444 (diff)
gnu: python-django-logging-json: Update to 1.16.
* gnu/packages/django.scm (python-django-logging-json): Update to 1.16. [build-system]: Switch to pyproject-build-system. [arguments]: Improve style. [native-inputs]: Add python-setuptools. Change-Id: I37e49c8bdc693a5f127a61e88cd7bfd1af16199d Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/django.scm30
1 files changed, 18 insertions, 12 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index b875789b64..bffbabcb2e 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1869,19 +1869,25 @@ backends in a single library.")
(define-public python-django-logging-json
(package
(name "python-django-logging-json")
- (version "1.15")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "django-logging-json" version))
- (sha256
- (base32
- "06041a8icazzp73kg93c7k1ska12wvkq7fpcad0l0sm1qnxx5yx7"))))
- (build-system python-build-system)
+ (version "1.16")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cipriantarta/django-logging")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1big7mv0274wgbr06v2qlq61pzh7h2rcn0la212shnh5b4fvhg56"))))
+ (build-system pyproject-build-system)
(arguments
- '(#:tests? #f ;no tests
- #:phases (modify-phases %standard-phases
- ;; Importing this module requires a Django project.
- (delete 'sanity-check))))
+ (list
+ #:tests? #f ;no tests
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Importing this module requires a Django project.
+ (delete 'sanity-check))))
+ (native-inputs (list python-setuptools))
(propagated-inputs
(list python-certifi python-django python-elasticsearch python-six))
(home-page "https://github.com/cipriantarta/django-logging")