summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-29 09:07:25 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-30 14:35:42 +0100
commit21085d9a1e14aa3c9321a01b6c02ccf14698aa68 (patch)
tree31d1d5cbd6a12e52db726cd88832c8d64c60eed5 /gnu
parent4743a5c42f7d1cfe7fb5f63f602d26dceee49765 (diff)
gnu: python-django-svg-image-form-field: Switch to pyproject.
* gnu/packages/django.scm (python-django-svg-image-form-field): [build-system]: Switch to pyproject-build-system. [arguments]<#:tests?>: Disable them. [native-inputs]: Add python-setuptools. Change-Id: I21ec342342881162828aeffeb9dad60db237a6cc Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/django.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 1d7b983c1be..f7ba461facc 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1994,7 +1994,9 @@ filtering system in ORM).")
(file-name (git-file-name name version))
(sha256
(base32 "131m545khn8l20j4x2bvlvz36dlbnhj9pc98i2dw72s3bw8pgws0"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (arguments (list #:tests? #f)) ; No tests.
+ (native-inputs (list python-setuptools))
(propagated-inputs
(list python-defusedxml python-django python-pillow))
(home-page "https://github.com/artrey/django-svg-image-form-field")