gnu: python-django-rq: Update to 2.3.2.
[jackhill/guix/guix.git] / gnu / packages / django.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
3 ;;; Copyright © 2016, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
4 ;;; Copyright © 2017 Nikita <nikita@n0.is>
5 ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
6 ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
7 ;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
8 ;;; Copyright © 2019 Sam <smbaines8@gmail.com>
9 ;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
10 ;;;
11 ;;; This file is part of GNU Guix.
12 ;;;
13 ;;; GNU Guix is free software; you can redistribute it and/or modify it
14 ;;; under the terms of the GNU General Public License as published by
15 ;;; the Free Software Foundation; either version 3 of the License, or (at
16 ;;; your option) any later version.
17 ;;;
18 ;;; GNU Guix is distributed in the hope that it will be useful, but
19 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;;; GNU General Public License for more details.
22 ;;;
23 ;;; You should have received a copy of the GNU General Public License
24 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
25
26 (define-module (gnu packages django)
27 #:use-module ((guix licenses) #:prefix license:)
28 #:use-module (guix packages)
29 #:use-module (guix download)
30 #:use-module (guix git-download)
31 #:use-module (guix build-system python)
32 #:use-module (gnu packages)
33 #:use-module (gnu packages base)
34 #:use-module (gnu packages databases)
35 #:use-module (gnu packages check)
36 #:use-module (gnu packages geo)
37 #:use-module (gnu packages python)
38 #:use-module (gnu packages python-compression)
39 #:use-module (gnu packages python-crypto)
40 #:use-module (gnu packages python-web)
41 #:use-module (gnu packages python-xyz)
42 #:use-module (gnu packages sphinx)
43 #:use-module (gnu packages time)
44 #:use-module (gnu packages xml))
45
46 (define-public python-django
47 (package
48 (name "python-django")
49 (version "3.1.1")
50 (source (origin
51 (method url-fetch)
52 (uri (pypi-uri "Django" version))
53 (sha256
54 (base32
55 "0bzwy58hrxbsh7szak1yfh7qvvfnpdpi8ay1x7d3pvbkm1f15j2r"))))
56 (build-system python-build-system)
57 (arguments
58 '(#:phases
59 (modify-phases %standard-phases
60 (add-before 'check 'pre-check
61 (lambda* (#:key inputs #:allow-other-keys)
62 ;; The test-suite tests timezone-dependent functions, thus tzdata
63 ;; needs to be available.
64 (setenv "TZDIR"
65 (string-append (assoc-ref inputs "tzdata")
66 "/share/zoneinfo"))
67
68 ;; Disable test for incorrect timezone: it only raises the
69 ;; expected error when /usr/share/zoneinfo exists, even though
70 ;; the machinery gracefully falls back to TZDIR. According to
71 ;; django/conf/__init__.py, lack of /usr/share/zoneinfo is
72 ;; harmless, so just ignore this test.
73 (substitute* "tests/settings_tests/tests.py"
74 ((".*def test_incorrect_timezone.*" all)
75 (string-append " @unittest.skipIf(True, 'Disabled by Guix')\n"
76 all)))
77
78 ;; Preserve the PYTHONPATH created by Guix when running the tests.
79 (substitute* "tests/admin_scripts/tests.py"
80 (("python_path = \\[")
81 (string-append "python_path = ['"
82 (string-join
83 (string-split (getenv "PYTHONPATH") #\:)
84 "','")
85 "', ")))
86
87 #t))
88 (replace 'check
89 (lambda _
90 (with-directory-excursion "tests"
91 (setenv "PYTHONPATH"
92 (string-append "..:" (getenv "PYTHONPATH")))
93 (invoke "python" "runtests.py"
94 ;; By default tests run in parallel, which may cause
95 ;; various race conditions. Run sequentially for
96 ;; consistent results.
97 "--parallel=1")))))))
98 ;; TODO: Install extras/django_bash_completion.
99 (native-inputs
100 `(("tzdata" ,tzdata-for-tests)
101 ;; Remaining packages are test requirements taken from
102 ;; tests/requirements/py3.txt
103 ("python-docutils" ,python-docutils)
104 ;; optional for tests: ("python-geoip2" ,python-geoip2)
105 ("python-jinja2" ,python-jinja2) ; >= 2.7
106 ;; optional for tests: ("python-memcached" ,python-memcached)
107 ("python-numpy" ,python-numpy)
108 ("python-pillow" ,python-pillow)
109 ("python-pyyaml" ,python-pyyaml)
110 ;; optional for tests: ("python-selenium" ,python-selenium)
111 ("python-tblib" ,python-tblib)))
112 (propagated-inputs
113 `(("python-argon2-cffi" ,python-argon2-cffi)
114 ("python-asgiref" ,python-asgiref)
115 ("python-bcrypt" ,python-bcrypt)
116 ("python-pytz" ,python-pytz)
117
118 ;; This input is not strictly required, but in practice many Django
119 ;; libraries need it for test suites and similar.
120 ("python-sqlparse" ,python-sqlparse)))
121 (home-page "https://www.djangoproject.com/")
122 (synopsis "High-level Python Web framework")
123 (description
124 "Django is a high-level Python Web framework that encourages rapid
125 development and clean, pragmatic design. It provides many tools for building
126 any Web site. Django focuses on automating as much as possible and adhering
127 to the @dfn{don't repeat yourself} (DRY) principle.")
128 (license license:bsd-3)
129 (properties `((python2-variant . ,(delay python2-django))
130 (cpe-name . "django")))))
131
132 (define-public python2-django
133 (let ((base (package-with-python2 (strip-python2-variant python-django))))
134 (package
135 (inherit base)
136 (native-inputs
137 `(;; Test requirements for Python 2 taken from
138 ;; tests/requirements/py3.txt: enum34 and mock.
139 ("python2-enum34" ,python2-enum34)
140 ("python2-mock" ,python2-mock)
141 ;; When adding memcached mind: for Python 2 memcached <= 1.53 is
142 ;; required.
143 ,@(package-native-inputs base))))))
144
145 (define-public python-django-2.2
146 (package
147 (inherit python-django)
148 (version "2.2.16")
149 (source (origin
150 (method url-fetch)
151 (uri (pypi-uri "Django" version))
152 (sha256
153 (base32
154 "1535g2r322cl4x52fb0dmzlbg23539j2wx6027j54p22xvjlbkv2"))))
155 (native-inputs
156 `(;; XXX: In 2.2 and 3.0, selenium is required for the test suite.
157 ("python-selenium" ,python-selenium)
158 ,@(package-native-inputs python-django)))))
159
160 (define-public python-django-extensions
161 (package
162 (name "python-django-extensions")
163 (version "3.0.6")
164 (source
165 (origin
166 (method git-fetch)
167 ;; Fetch from the git repository, so that the tests can be run.
168 (uri (git-reference
169 (url "https://github.com/django-extensions/django-extensions")
170 (commit version)))
171 (file-name (string-append name "-" version))
172 (sha256
173 (base32
174 "0sra6hazqvspxd1pnx5cj7gia1rkaz3hn06ib4wd0frc167f5afy"))))
175 (build-system python-build-system)
176 (arguments
177 '(#:tests? #f)) ;XXX: requires a Postgres or MySQL database
178 (propagated-inputs
179 `(("python-six" ,python-six)
180 ("python-vobject" ,python-vobject)
181 ("python-werkzeug" ,python-werkzeug)
182 ("python-dateutil" ,python-dateutil)
183 ("python-django" ,python-django)))
184 (native-inputs
185 `(("python-mock" ,python-mock)
186 ("python-factory-boy" ,python-factory-boy)
187 ("python-tox" ,python-tox)
188 ("python-pytest" ,python-pytest)
189 ("python-pytest-cov" ,python-pytest-cov)
190 ("python-pytest-django" ,python-pytest-django)
191 ("python-shortuuid" , python-shortuuid)))
192 (home-page
193 "https://github.com/django-extensions/django-extensions")
194 (synopsis "Custom management extensions for Django")
195 (description
196 "Django-extensions extends Django providing, for example, management
197 commands, additional database fields and admin extensions.")
198 (license license:expat)))
199
200 (define-public python-django-simple-math-captcha
201 (package
202 (name "python-django-simple-math-captcha")
203 (version "1.0.9")
204 (home-page "https://github.com/alsoicode/django-simple-math-captcha")
205 (source (origin
206 (method git-fetch)
207 (uri (git-reference
208 (url home-page)
209 (commit (string-append "v" version))))
210 (file-name (git-file-name name version))
211 (sha256
212 (base32
213 "0fhy9k8haqa1296v0qpg1b5w7y3pyw9qi9z9laj5ijry1gk35qaw"))))
214 (build-system python-build-system)
215 (arguments
216 '(#:phases (modify-phases %standard-phases
217 (add-after 'unpack 'patch-six-imports
218 (lambda _
219 ;; Django no longer bundles six, adjust the imports
220 ;; accordingly. The six dependency can likely be
221 ;; removed in the next version.
222 (substitute* (find-files "." "\\.py$")
223 (("from django\\.utils import six")
224 "import six"))
225 #t))
226 (replace 'check
227 (lambda _
228 (invoke "python" "runtests.py"))))))
229 (native-inputs
230 `(("python-mock" ,python-mock)))
231 (propagated-inputs
232 `(("python-django" ,python-django)
233 ("python-six" ,python-six)))
234 (synopsis "Easy-to-use math field/widget captcha for Django forms")
235 (description
236 "A multi-value-field that presents a human answerable question,
237 with no settings.py configuration necessary, but instead can be configured
238 with arguments to the field constructor.")
239 (license license:asl2.0)))
240
241 (define-public python2-django-simple-math-captcha
242 (package-with-python2 python-django-simple-math-captcha))
243
244 (define-public python-django-classy-tags
245 (package
246 (name "python-django-classy-tags")
247 (version "2.0.0")
248 (source
249 (origin
250 (method url-fetch)
251 (uri (pypi-uri "django-classy-tags" version))
252 (sha256
253 (base32
254 "1javam3zqi3y3j0r490mm61v48yh75jaha99gb7lsxkaz6yri7fm"))))
255 (build-system python-build-system)
256 ;; FIXME: How to make the test templates available to Django?
257 (arguments '(#:tests? #f))
258 (propagated-inputs
259 `(("python-django" ,python-django)))
260 (home-page "https://github.com/divio/django-classy-tags")
261 (synopsis "Class based template tags for Django")
262 (description
263 "@code{django-classy-tags} is an approach at making writing template tags
264 in Django easier, shorter and more fun. It provides an extensible argument
265 parser which reduces most of the boiler plate code you usually have to write
266 when coding custom template tags.")
267 (license license:bsd-3)))
268
269 (define-public python-django-taggit
270 (package
271 (name "python-django-taggit")
272 (version "1.3.0")
273 (source
274 (origin
275 (method url-fetch)
276 (uri (pypi-uri "django-taggit" version))
277 (sha256
278 (base32
279 "0bbkabbs77z229ps0800gxfhf75yagp4x4j5jzfysbac3zvkp0sa"))))
280 (build-system python-build-system)
281 (arguments
282 '(#:phases
283 (modify-phases %standard-phases
284 (replace 'check
285 (lambda _
286 (invoke "python3" "-m" "django" "test" "--settings=tests.settings"))))))
287 (propagated-inputs
288 `(("python-django" ,python-django)
289 ("python-isort" ,python-isort)))
290 (native-inputs
291 `(("python-pytest" ,python-pytest)
292 ("python-mock" ,python-mock)))
293 (home-page
294 "https://github.com/jazzband/django-taggit")
295 (synopsis
296 "Reusable Django application for simple tagging")
297 (description
298 "Django-taggit is a reusable Django application for simple tagging.")
299 (license license:bsd-3)))
300
301 (define-public python-easy-thumbnails
302 (package
303 (name "python-easy-thumbnails")
304 (version "2.7")
305 (source
306 (origin
307 (method url-fetch)
308 (uri (pypi-uri "easy-thumbnails" version))
309 (sha256
310 (base32
311 "14gzp5cv24z0qhxb7f7k7v9jgzpaj4n8yhjq83ynpx8183fs1rz4"))))
312 (build-system python-build-system)
313 (propagated-inputs
314 `(("python-django" ,python-django)
315 ("python-pillow" ,python-pillow)))
316 (home-page "https://github.com/SmileyChris/easy-thumbnails")
317 (synopsis "Easy thumbnails for Django")
318 (description
319 "Easy thumbnails is a Django plugin to dynamically create thumbnails
320 based on source images. Multiple thumbnails can be created from a single
321 source image, using different options to control parameters like the image
322 size and quality.")
323 (license license:bsd-3)))
324
325 (define-public python-pytest-django
326 (package
327 (name "python-pytest-django")
328 (version "3.10.0")
329 (source (origin
330 (method url-fetch)
331 (uri (pypi-uri "pytest-django" version))
332 (sha256
333 (base32
334 "19nvqsb7b9kz3ikpb50m8ppf7mfhzrapdxsqd5hhd1pdfz8dprjd"))))
335 (build-system python-build-system)
336 (arguments
337 `(#:phases
338 (modify-phases %standard-phases
339 (replace 'check
340 (lambda* (#:key tests? inputs outputs #:allow-other-keys)
341 (if tests?
342 (begin
343 (add-installed-pythonpath inputs outputs)
344 (setenv "PYTHONPATH"
345 (string-append ".:" ;for pytest_django_test
346 (getenv "PYTHONPATH")))
347 (setenv "PYTEST_DJANGO_TEST_RUNNER" "pytest")
348 (setenv "DJANGO_SETTINGS_MODULE"
349 "pytest_django_test.settings_sqlite_file")
350 (invoke "pytest" "-vv" "-k"
351 ;; FIXME: these tests fail to locate Django templates ...
352 (string-append "not test_django_not_loaded_without_settings"
353 " and not test_settings"
354 ;; ... and this does not discover
355 ;; 'pytest_django_test'.
356 " and not test_urls_cache_is_cleared")))
357 (format #t "test suite not run~%"))
358 #t)))))
359 (native-inputs
360 `(("python-django" ,python-django)
361 ("python-setuptools-scm" ,python-setuptools-scm)
362
363 ;; For tests.
364 ("python-pytest-xdist" ,python-pytest-xdist)))
365 (propagated-inputs
366 `(("python-pytest" ,python-pytest)))
367 (home-page "https://pytest-django.readthedocs.org/")
368 (synopsis "Django plugin for py.test")
369 (description "Pytest-django is a plugin for py.test that provides a set of
370 useful tools for testing Django applications and projects.")
371 (license license:bsd-3)))
372
373 (define-public python2-pytest-django
374 (package-with-python2 python-pytest-django))
375
376 (define-public python-django-haystack
377 (package
378 (name "python-django-haystack")
379 (version "2.8.1")
380 (source
381 (origin
382 (method url-fetch)
383 (uri (pypi-uri "django-haystack" version))
384 (sha256
385 (base32
386 "1302fqsrx8w474xk5cmnmg3hjqfprlxnjg9qlg86arsr4v4vqm4b"))))
387 (build-system python-build-system)
388 (arguments
389 '(#:phases
390 (modify-phases %standard-phases
391 (add-after 'unpack 'loosen-verion-restrictions
392 (lambda _
393 (substitute* "setup.py"
394 (("geopy.*") "geopy',\n"))
395 #t))
396 (add-before 'check 'set-gdal-lib-path
397 (lambda* (#:key inputs #:allow-other-keys)
398 (setenv "GDAL_LIBRARY_PATH"
399 (string-append (assoc-ref inputs "gdal")
400 "/lib"))
401 #t)))
402 #:tests? #f)) ; OSError: libgdal.so.27: cannot open shared object file
403 (propagated-inputs
404 `(("python-django" ,python-django)))
405 (native-inputs
406 `(("gdal" ,gdal)
407 ("python-coverage" ,python-coverage)
408 ("python-dateutil" ,python-dateutil)
409 ("python-geopy" ,python-geopy)
410 ("python-mock" ,python-mock)
411 ("python-nose" ,python-nose)
412 ("python-requests" ,python-requests)
413 ("python-setuptools-scm" ,python-setuptools-scm)
414 ("python-pysolr" ,python-pysolr)
415 ("python-whoosh" ,python-whoosh)))
416 (home-page "http://haystacksearch.org/")
417 (synopsis "Pluggable search for Django")
418 (description "Haystack provides modular search for Django. It features a
419 unified, familiar API that allows you to plug in different search backends
420 (such as Solr, Elasticsearch, Whoosh, Xapian, etc.) without having to modify
421 your code.")
422 (license license:bsd-3)))
423
424 (define-public python-django-filter
425 (package
426 (name "python-django-filter")
427 (version "2.3.0")
428 (source (origin
429 (method url-fetch)
430 (uri (pypi-uri "django-filter" version))
431 (sha256
432 (base32
433 "1bz5qzdk9pk4a2lp2yacrdnqmkv24vxnz4k3lykrnpc3b7bkvrhi"))))
434 (build-system python-build-system)
435 (arguments
436 '(#:phases
437 (modify-phases %standard-phases
438 (replace 'check
439 (lambda _
440 (invoke "python" "runtests.py"))))))
441 (native-inputs
442 `(("python-django" ,python-django)
443 ("python-djangorestframework" ,python-djangorestframework)
444 ("python-django-crispy-forms" ,python-django-crispy-forms)
445 ("python-mock" ,python-mock)))
446 (home-page "https://django-filter.readthedocs.io/en/latest/")
447 (synopsis "Reusable Django application to filter querysets dynamically")
448 (description
449 "Django-filter is a generic, reusable application to alleviate writing
450 some of the more mundane bits of view code. Specifically, it allows users to
451 filter down a queryset based on a model’s fields, displaying the form to let
452 them do this.")
453 (license license:bsd-3)))
454
455 (define-public python2-django-filter
456 (package-with-python2 python-django-filter))
457
458 (define-public python-django-allauth
459 (package
460 (name "python-django-allauth")
461 (version "0.42.0")
462 (source
463 (origin
464 (method url-fetch)
465 (uri (pypi-uri "django-allauth" version))
466 (sha256
467 (base32
468 "0c0x8izvrnjhrr48w6pwsfk9ddbi6yfxg7v3hh5dm1vz1d0hjwpi"))))
469 (build-system python-build-system)
470 (arguments
471 '(#:phases
472 (modify-phases %standard-phases
473 (replace 'check
474 (lambda _
475 (setenv "DJANGO_SETTINGS_MODULE" "test_settings")
476 (invoke "django-admin" "test" "allauth.tests"
477 "--pythonpath=."))))))
478 (propagated-inputs
479 `(("python-openid" ,python-openid)
480 ("python-requests" ,python-requests)
481 ("python-requests-oauthlib" ,python-requests-oauthlib)))
482 (native-inputs
483 `(("python-mock" ,python-mock)))
484 (inputs
485 `(("python-django" ,python-django)))
486 (home-page "https://github.com/pennersr/django-allauth")
487 (synopsis "Set of Django applications addressing authentication")
488 (description
489 "Integrated set of Django applications addressing authentication,
490 registration, account management as well as 3rd party (social)
491 account authentication.")
492 (license license:expat)))
493
494 (define-public python2-django-allauth
495 (package-with-python2 python-django-allauth))
496
497 (define-public python-django-debug-toolbar
498 (package
499 (name "python-django-debug-toolbar")
500 (version "2.2")
501 (source
502 (origin
503 (method git-fetch)
504 (uri (git-reference
505 (url "https://github.com/jazzband/django-debug-toolbar")
506 (commit version)))
507 (file-name (git-file-name name version))
508 (sha256
509 (base32
510 "14069rlgjd5g724iaglai0nc636g9km4ba56r4j3k84chibqzn03"))))
511 (build-system python-build-system)
512 (propagated-inputs
513 `(("python-sqlparse" ,python-sqlparse)
514 ("python-django" ,python-django)))
515 (native-inputs
516 `(("python-django-jinja" ,python-django-jinja)
517 ("python-html5lib" ,python-html5lib)))
518 (arguments
519 '(#:phases
520 (modify-phases %standard-phases
521 (replace 'check
522 (lambda _
523 (invoke "make" "test"))))))
524 (home-page
525 "https://github.com/jazzband/django-debug-toolbar")
526 (synopsis "Toolbar to help with developing Django applications")
527 (description
528 "A configurable set of panels that display information about the current
529 request and response as a toolbar on the rendered page.")
530 (license license:bsd-3)))
531
532 (define-public python-django-gravatar2
533 (package
534 (name "python-django-gravatar2")
535 (version "1.4.4")
536 (source
537 (origin
538 (method url-fetch)
539 (uri (pypi-uri "django-gravatar2" version))
540 (sha256
541 (base32
542 "1vn921fb6jjx7rf5dzhy66rkb71nwmh9ydd0xs9ys72icw4jh4y8"))))
543 (build-system python-build-system)
544 (arguments
545 '(;; TODO: The django project for the tests is missing from the release.
546 #:tests? #f))
547 (inputs
548 `(("python-django" ,python-django)))
549 (home-page "https://github.com/twaddington/django-gravatar")
550 (synopsis "Gravatar support for Django, improved version")
551 (description
552 "Essential Gravatar support for Django. Features helper methods,
553 templatetags and a full test suite.")
554 (license license:expat)))
555
556 (define-public python2-django-gravatar2
557 (package-with-python2 python-django-gravatar2))
558
559 (define-public python-django-assets
560 (package
561 (name "python-django-assets")
562 (version "2.0")
563 (source (origin
564 (method url-fetch)
565 (uri (pypi-uri "django-assets" version))
566 (sha256
567 (base32
568 "0fc6i77faxxv1gjlp06lv3kw64b5bhdiypaygfxh5djddgk83fwa"))))
569 (build-system python-build-system)
570 (native-inputs
571 `(("python-nose" ,python-nose)))
572 (propagated-inputs
573 `(("python-django" ,python-django)
574 ("python-webassets" ,python-webassets)))
575 (home-page "https://github.com/miracle2k/django-assets")
576 (synopsis "Asset management for Django")
577 (description
578 "Asset management for Django, to compress and merge CSS and Javascript
579 files. Integrates the webassets library with Django, adding support for
580 merging, minifying and compiling CSS and Javascript files.")
581 (license license:bsd-2)))
582
583 (define-public python2-django-assets
584 (package-with-python2 python-django-assets))
585
586 (define-public python-django-jinja
587 (package
588 (name "python-django-jinja")
589 (version "2.6.0")
590 (source
591 (origin
592 (method git-fetch)
593 (uri (git-reference
594 (url "https://github.com/niwinz/django-jinja")
595 (commit version)))
596 (file-name (git-file-name name version))
597 (sha256
598 (base32
599 "06ldbkfkm6sc0p9sqpjph06gxrqpj78ih3dc2yik2fcba2y5mak1"))))
600 (build-system python-build-system)
601 (propagated-inputs
602 `(("python-django" ,python-django)
603 ("python-jinja2" ,python-jinja2)
604 ("python-pytz" ,python-pytz)
605 ("python-django-pipeline" ,python-django-pipeline)))
606 (arguments
607 '(;; TODO Tests currently fail due to issues with the configuration for
608 ;; django-pipeline
609 #:tests? #f
610 #:phases
611 (modify-phases %standard-phases
612 (replace 'check
613 (lambda* (#:key tests? #:allow-other-keys)
614 (or
615 (not tests?)
616 (with-directory-excursion "testing"
617 (invoke "python" "runtests.py"))))))))
618 (home-page
619 "https://niwinz.github.io/django-jinja/latest/")
620 (synopsis "Simple jinja2 templating backend for Django")
621 (description
622 "This package provides a templating backend for Django, using Jinja2. It
623 provides certain advantages over the builtin Jinja2 backend in Django, for
624 example, explicit calls to callables from templates and better performance.")
625 (license license:bsd-3)))
626
627 (define-public python-django-jsonfield
628 (package
629 (name "python-django-jsonfield")
630 (version "1.0.3")
631 (source (origin
632 (method url-fetch)
633 (uri (pypi-uri "jsonfield" version))
634 (sha256
635 (base32
636 "19x4lak0hg9c20r7mvf27w7i8r6i4sg2g0ypmlmp2665fnk76zvy"))))
637 (build-system python-build-system)
638 (arguments
639 `(#:phases
640 (modify-phases %standard-phases
641 (add-before 'check 'fix-tests
642 (lambda _
643 (substitute* "jsonfield/tests.py"
644 (("django.forms.util") "django.forms.utils")))))))
645 (propagated-inputs
646 `(("python-django" ,python-django)))
647 (home-page "https://github.com/bradjasper/django-jsonfield")
648 (synopsis "Store validated JSON in your model")
649 (description
650 "Django-jsonfield is a reusable Django field that allows you to store
651 validated JSON in your model. It silently takes care of serialization. To
652 use, simply add the field to one of your models.")
653 (license license:expat)))
654
655 (define-public python2-django-jsonfield
656 (package-with-python2 python-django-jsonfield))
657
658 (define-public python-dj-database-url
659 (package
660 (name "python-dj-database-url")
661 (version "0.5.0")
662 (source (origin
663 (method url-fetch)
664 (uri (pypi-uri "dj-database-url" version))
665 (sha256
666 (base32
667 "0qs16g5y3lflxibsl8gwkwap21crhmmv98l60rdq6x1wawgypsja"))))
668 (build-system python-build-system)
669 (home-page "https://github.com/kennethreitz/dj-database-url")
670 (synopsis "Use Database URLs in your Django Application")
671 (description
672 "This simple Django utility allows you to utilize the 12factor inspired
673 DATABASE_URL environment variable to configure your Django application.
674
675 The dj_database_url.config method returns a Django database connection
676 dictionary, populated with all the data specified in your URL. There is also a
677 conn_max_age argument to easily enable Django’s connection pool.")
678 (license license:bsd-2)))
679
680 (define-public python2-dj-database-url
681 (package-with-python2 python-dj-database-url))
682
683 (define-public python-django-picklefield
684 (package
685 (name "python-django-picklefield")
686 (version "3.0.1")
687 (home-page "https://github.com/gintas/django-picklefield")
688 ;; Use a git checkout because the PyPI release lacks tests.
689 (source
690 (origin
691 (method git-fetch)
692 (uri (git-reference
693 (url home-page)
694 (commit (string-append "v" version))))
695 (file-name (git-file-name name version))
696 (sha256
697 (base32
698 "0ni7bc86k0ra4pc8zv451pzlpkhs1nyil1sq9jdb4m2mib87b5fk"))))
699 (build-system python-build-system)
700 (arguments
701 '(#:phases (modify-phases %standard-phases
702 (replace 'check
703 (lambda _
704 (invoke "python" "-m" "django" "test" "-v2"
705 "--settings=tests.settings"))))))
706 (propagated-inputs `(("python-django" ,python-django)))
707 (synopsis "Pickled object field for Django")
708 (description "Pickled object field for Django")
709 (license license:expat)))
710
711 (define-public python-django-bulk-update
712 (package
713 (name "python-django-bulk-update")
714 (version "2.2.0")
715 (source (origin
716 (method url-fetch)
717 (uri (pypi-uri "django-bulk-update" version))
718 (sha256
719 (base32
720 "0dxkmrm3skyw82i0qa8vklxw1ma1y308kh9w2hcnvhpacn5cxdss"))))
721 (build-system python-build-system)
722 (arguments
723 ;; XXX: Tests require a Postgres database.
724 `(#:tests? #f))
725 (propagated-inputs
726 `(("python-django" ,python-django)))
727 (home-page "https://github.com/aykut/django-bulk-update")
728 (synopsis "Simple bulk update over Django ORM or with helper function")
729 (description
730 "Simple bulk update over Django ORM or with helper function. This
731 project aims to bulk update given objects using one query over Django ORM.")
732 (license license:expat)))
733
734 (define-public python2-django-bulk-update
735 (package-with-python2 python-django-bulk-update))
736
737 (define-public python-django-contact-form
738 (package
739 (name "python-django-contact-form")
740 (version "1.8.1")
741 (source (origin
742 (method url-fetch)
743 (uri (pypi-uri "django-contact-form" version))
744 (sha256
745 (base32
746 "1zv7bcjfrg32gcsq3bclkld79l6mcy2wcvlj81h7q2ppv1wm8vqs"))))
747 (build-system python-build-system)
748 (arguments
749 `(#:phases
750 (modify-phases %standard-phases
751 (replace 'check
752 (lambda _
753 (setenv "PYTHONPATH"
754 (string-append "./build/lib:"
755 (getenv "PYTHONPATH")))
756 (invoke "coverage" "run" "--source" "contact_form"
757 "runtests.py"))))))
758 (native-inputs
759 `(("python-coverage" ,python-coverage)))
760 (propagated-inputs
761 `(("python-django" ,python-django)))
762 (home-page "https://github.com/ubernostrum/django-contact-form")
763 (synopsis "Contact form for Django")
764 (description
765 "This application provides simple, extensible contact-form functionality
766 for Django sites.")
767 (license license:bsd-3)))
768
769 (define-public python2-django-contact-form
770 (package-with-python2 python-django-contact-form))
771
772 (define-public python-django-contrib-comments
773 (package
774 (name "python-django-contrib-comments")
775 (version "1.9.2")
776 (source (origin
777 (method url-fetch)
778 (uri (pypi-uri "django-contrib-comments" version))
779 (sha256
780 (base32
781 "0ccdiv784a5vnpfal36km4dyg12340rwhpr0riyy0k89wfnjn8yi"))))
782 (build-system python-build-system)
783 (propagated-inputs
784 `(("python-django" ,python-django)))
785 (home-page "https://github.com/django/django-contrib-comments")
786 (synopsis "Comments framework")
787 (description
788 "Django used to include a comments framework; since Django 1.6 it's been
789 separated to a separate project. This is that project. This framework can be
790 used to attach comments to any model, so you can use it for comments on blog
791 entries, photos, book chapters, or anything else.")
792 (license license:bsd-3)))
793
794 (define-public python2-django-contrib-comments
795 (package-with-python2 python-django-contrib-comments))
796
797 (define-public python-django-overextends
798 (package
799 (name "python-django-overextends")
800 (version "0.4.3")
801 (source (origin
802 (method url-fetch)
803 (uri (pypi-uri "django-overextends" version))
804 (sha256
805 (base32
806 "0qc2pcf3i56pmfxh2jw7k3pgljd8xzficmkl2541n7bkcbngqfzm"))))
807 (build-system python-build-system)
808 (arguments
809 `(#:phases
810 (modify-phases %standard-phases
811 (replace 'check
812 (lambda _ (invoke "./test_project/manage.py" "test"))))))
813 (propagated-inputs
814 `(("python-django" ,python-django)))
815 (native-inputs
816 `(("sphinx-me" ,python-sphinx-me)))
817 (home-page "https://github.com/stephenmcd/django-overextends")
818 (synopsis "Circular template inheritance")
819 (description
820 "A Django reusable app providing the overextends template tag, a drop-in
821 replacement for Django's extends tag, which allows you to use circular template
822 inheritance. The primary use-case for overextends is to simultaneously
823 override and extend templates from other reusable apps, in your own Django
824 project.")
825 (license license:bsd-2)))
826
827 (define-public python2-django-overextends
828 (package-with-python2 python-django-overextends))
829
830 (define-public python-django-pipeline
831 (package
832 (name "python-django-pipeline")
833 (version "2.0.5")
834 (source
835 (origin
836 (method url-fetch)
837 (uri (pypi-uri "django-pipeline" version))
838 (sha256
839 (base32
840 "19vrbd5s12qw4qlg5n8ldv7zz2rs5y2sdid1i7lvgp92m71dayvc"))))
841 (build-system python-build-system)
842 (arguments
843 '(#:phases
844 (modify-phases %standard-phases
845 (add-after 'unpack 'patch-source
846 (lambda _
847 (substitute* "tests/tests/test_compiler.py"
848 (("\\/usr\\/bin\\/env")
849 (which "env")))))
850 (replace 'check
851 (lambda*(#:key tests? #:allow-other-keys)
852 (or
853 (not tests?)
854 (begin
855 (setenv "PYTHONPATH"
856 (string-append (getcwd) ":"
857 (getenv "PYTHONPATH")))
858 (setenv "DJANGO_SETTINGS_MODULE" "tests.settings")
859 (invoke "django-admin" "test" "tests"))))))))
860 (propagated-inputs
861 `(("python-css-html-js-minify" ,python-css-html-js-minify)
862 ("python-django" ,python-django)
863 ("python-slimit" ,python-slimit)
864 ("python-jsmin" ,python-jsmin)))
865 (home-page
866 "https://github.com/jazzband/django-pipeline")
867 (synopsis "Asset packaging library for Django")
868 (description
869 "Pipeline is an asset packaging library for Django, providing both CSS
870 and JavaScript concatenation and compression, built-in JavaScript template
871 support, and optional data-URI image and font embedding.")
872 (license license:expat)))
873
874 (define-public python-django-redis
875 (package
876 (name "python-django-redis")
877 (version "4.12.1")
878 (source (origin
879 (method url-fetch)
880 (uri (pypi-uri "django-redis" version))
881 (sha256
882 (base32
883 "0qvsm8yjchl0d3i7g20wba6px9lb5gv8kp3fcnr6hr0y0b3qjr9h"))))
884 (build-system python-build-system)
885 (arguments
886 `(#:phases
887 (modify-phases %standard-phases
888 (replace 'check
889 (lambda _
890 (invoke "redis-server" "--daemonize" "yes")
891 (with-directory-excursion "tests"
892 (invoke "python" "runtests.py")))))))
893 (native-inputs
894 `(("python-fakeredis" ,python-fakeredis)
895 ("python-hiredis" ,python-hiredis)
896 ("python-mock" ,python-mock)
897 ("python-msgpack" ,python-msgpack)
898 ("redis" ,redis)))
899 (propagated-inputs
900 `(("python-django" ,python-django)
901 ("python-redis" ,python-redis)))
902 (home-page "https://github.com/niwibe/django-redis")
903 (synopsis "Full featured redis cache backend for Django")
904 (description
905 "Full featured redis cache backend for Django.")
906 (license license:bsd-3)))
907
908 (define-public python2-django-redis
909 (package-with-python2 python-django-redis))
910
911 (define-public python-django-rq
912 (package
913 (name "python-django-rq")
914 (version "2.3.2")
915 (source (origin
916 (method url-fetch)
917 (uri (pypi-uri "django-rq" version))
918 (sha256
919 (base32
920 "0lksnjn3q3f7y72bj2yr8870w28a5b6x0vjnd9nhpq2ah6xfz6pf"))))
921 (build-system python-build-system)
922 (arguments
923 `(#:phases
924 (modify-phases %standard-phases
925 (replace 'check
926 (lambda _
927 (invoke "redis-server" "--daemonize" "yes")
928 (invoke "django-admin.py" "test" "django_rq"
929 "--settings=django_rq.tests.settings"
930 "--pythonpath=."))))))
931 (native-inputs
932 `(("python-django-redis" ,python-django-redis)
933 ("python-mock" ,python-mock)
934 ("python-rq-scheduler" ,python-rq-scheduler)
935 ("redis" ,redis)))
936 (propagated-inputs
937 `(("python-django" ,python-django)
938 ("python-rq" ,python-rq)))
939 (home-page "https://github.com/ui/django-rq")
940 (synopsis "Django integration with RQ")
941 (description
942 "Django integration with RQ, a Redis based Python queuing library.
943 Django-RQ is a simple app that allows you to configure your queues in django's
944 settings.py and easily use them in your project.")
945 (license license:expat)))
946
947 (define-public python2-django-rq
948 (package-with-python2 python-django-rq))
949
950 (define-public python-django-q
951 (package
952 (name "python-django-q")
953 (version "1.3.2")
954 (source
955 (origin
956 (method url-fetch)
957 (uri (pypi-uri "django-q" version))
958 (sha256
959 (base32
960 "0ac3rjxv37bn97a62ly8b7qvbv765z6paiinzpwxx83nal2icc42"))))
961 (build-system python-build-system)
962 (arguments
963 '(#:phases
964 (modify-phases %standard-phases
965 (replace 'check
966 (lambda _
967 (setenv "DJANGO_SETTINGS_MODULE" "django_q.tests.settings")
968 (invoke "django-admin" "test" "django_q.tests"
969 "--pythonpath=."))))))
970 (propagated-inputs
971 `(("python-arrow" ,python-arrow)
972 ("python-blessed" ,python-blessed)
973 ("python-django" ,python-django)
974 ("python-django-picklefield" ,python-django-picklefield)))
975 (native-inputs
976 `(("python-django-redis" ,python-django-redis)
977 ("python-pytest-django" ,python-pytest-django)))
978 (home-page "https://django-q.readthedocs.io/")
979 (synopsis "Multiprocessing distributed task queue for Django")
980 (description
981 "Django Q is a native Django task queue, scheduler and worker application
982 using Python multiprocessing.")
983 (license license:expat)))
984
985 (define-public python-django-sortedm2m
986 (package
987 (name "python-django-sortedm2m")
988 (version "1.3.3")
989 (source (origin
990 (method url-fetch)
991 (uri (pypi-uri "django-sortedm2m" version))
992 (sha256
993 (base32
994 "0axf765i7b3c2s83nlph47asi8s071dhq8l7y382v1pw785s22vi"))))
995 (build-system python-build-system)
996 (arguments
997 ;; no tests.
998 `(#:tests? #f))
999 (propagated-inputs
1000 `(("python-django" ,python-django)))
1001 (home-page "https://github.com/gregmuellegger/django-sortedm2m")
1002 (synopsis "Drop-in replacement for django's own ManyToManyField")
1003 (description
1004 "Sortedm2m is a drop-in replacement for django's own ManyToManyField.
1005 The provided SortedManyToManyField behaves like the original one but remembers
1006 the order of added relations.")
1007 (license license:bsd-3)))
1008
1009 (define-public python2-django-sortedm2m
1010 (package-with-python2 python-django-sortedm2m))
1011
1012 (define-public python-django-appconf
1013 (package
1014 (name "python-django-appconf")
1015 (version "1.0.3")
1016 (source (origin
1017 (method url-fetch)
1018 (uri (pypi-uri "django-appconf" version))
1019 (sha256
1020 (base32
1021 "1qw0p9qh78bvkgi38ba58djwn0rd5j1lrkg2c2wk5wb7snj3rw9m"))))
1022 (build-system python-build-system)
1023 (propagated-inputs
1024 `(("python-django" ,python-django)
1025 ("python-six" ,python-six)))
1026 (home-page "https://github.com/django-compressor/django-appconf")
1027 (synopsis "Handle configuration defaults of packaged Django apps")
1028 (description
1029 "This app precedes Django's own AppConfig classes that act as \"objects
1030 [to] store metadata for an application\" inside Django's app loading mechanism.
1031 In other words, they solve a related but different use case than
1032 django-appconf and can't easily be used as a replacement. The similarity in
1033 name is purely coincidental.")
1034 (license license:bsd-3)))
1035
1036 (define-public python2-django-appconf
1037 (package-with-python2 python-django-appconf))
1038
1039 (define-public python-django-statici18n
1040 (package
1041 (name "python-django-statici18n")
1042 (version "1.3.0")
1043 (source (origin
1044 (method url-fetch)
1045 (uri (pypi-uri "django-statici18n" version))
1046 (sha256
1047 (base32
1048 "0alcf4g1nv69njhq5k3qw4mfl2k6dc18bik5nk0g1mnp3m8zyz7k"))))
1049 (build-system python-build-system)
1050 (propagated-inputs
1051 `(("python-django" ,python-django)
1052 ("django-appconf" ,python-django-appconf)))
1053 (home-page "https://github.com/zyegfryed/django-statici18n")
1054 (synopsis "Generate JavaScript catalog to static files")
1055 (description
1056 "A Django app that provides helper for generating JavaScript catalog to
1057 static files.")
1058 (license license:bsd-3)))
1059
1060 (define-public python2-django-statici18n
1061 (package-with-python2 python-django-statici18n))
1062
1063 (define-public python-django-tagging
1064 (package
1065 (name "python-django-tagging")
1066 (version "0.5.0")
1067 (source
1068 (origin
1069 (method url-fetch)
1070 (uri (pypi-uri "django-tagging" version))
1071 (sha256
1072 (base32
1073 "13afxx30chssclxzd9gqnvwm9qyrdpnlbs6iswdfa18phfj8zmi8"))))
1074 (build-system python-build-system)
1075 (arguments
1076 `(#:phases
1077 (modify-phases %standard-phases
1078 (replace 'check
1079 (lambda _
1080 (setenv "DJANGO_SETTINGS_MODULE" "tagging.tests.settings")
1081 (invoke "django-admin" "test" "--pythonpath=."))))))
1082 (inputs
1083 `(("python-django" ,python-django)))
1084 (home-page "https://github.com/Fantomas42/django-tagging")
1085 (synopsis "Generic tagging application for Django")
1086 (description "This package provides a generic tagging application for
1087 Django projects, which allows association of a number of tags with any
1088 @code{Model} instance and makes retrieval of tags simple.")
1089 (properties `((python2-variant . ,(delay python2-django-tagging))))
1090 (license license:bsd-3)))
1091
1092 (define-public python2-django-tagging
1093 (let ((base (package-with-python2
1094 (strip-python2-variant python-django-tagging))))
1095 (package
1096 (inherit base)
1097 (version "0.4.6")
1098 (source
1099 (origin
1100 (method url-fetch)
1101 (uri (pypi-uri "django-tagging" version))
1102 (sha256
1103 (base32
1104 "0s7b4v45j783yaxs7rni10k24san0ya77nqz4s7zdf3jhfpk42r1")))))))
1105
1106 (define-public python-djangorestframework
1107 (package
1108 (name "python-djangorestframework")
1109 (version "3.11.1")
1110 (source
1111 (origin
1112 (method url-fetch)
1113 (uri (pypi-uri "djangorestframework" version))
1114 (sha256
1115 (base32
1116 "0chbl1d0m1x23mmpdj7y85k3n32lpxrhcdl07ywnylfj9dd2vl3d"))))
1117 (build-system python-build-system)
1118 (arguments
1119 '(;; No included tests
1120 #:tests? #f))
1121 (propagated-inputs
1122 `(("python-django" ,python-django)))
1123 (home-page "https://www.django-rest-framework.org")
1124 (synopsis "Toolkit for building Web APIs with Django")
1125 (description
1126 "The Django REST framework is for building Web APIs with Django. It
1127 provides features like a web browseable API and authentication policies.")
1128 (license license:bsd-2)))
1129
1130 (define-public python-django-sekizai
1131 (package
1132 (name "python-django-sekizai")
1133 (version "1.1.0")
1134 (source
1135 (origin
1136 (method url-fetch)
1137 (uri (pypi-uri "django-sekizai" version))
1138 (sha256
1139 (base32
1140 "1nc4sv109valdn6azmgm2j01k7khxy2wnji84z63x7fxsikfdxp2"))))
1141 (build-system python-build-system)
1142 (arguments '(#:tests? #f)) ; Tests not included with release.
1143 (propagated-inputs
1144 `(("python-django" ,python-django)
1145 ("python-django-classy-tags" ,python-django-classy-tags)
1146 ("python-six" ,python-six)))
1147 (home-page "https://github.com/divio/django-sekizai")
1148 (synopsis "Template blocks for Django projects")
1149 (description "Sekizai means blocks in Japanese, and thats what this app
1150 provides. A fresh look at blocks. With @code{django-sekizai} you can define
1151 placeholders where your blocks get rendered and at different places in your
1152 templates append to those blocks. This is especially useful for css and
1153 javascript. Your subtemplates can now define css and javscript files to be
1154 included, and the css will be nicely put at the top and the javascript to the
1155 bottom, just like you should. Also sekizai will ignore any duplicate content in
1156 a single block.")
1157 (license license:bsd-3)))
1158
1159 (define-public python-django-crispy-forms
1160 (package
1161 (name "python-django-crispy-forms")
1162 (version "1.9.2")
1163 (source
1164 (origin
1165 (method url-fetch)
1166 (uri (pypi-uri "django-crispy-forms" version))
1167 (sha256
1168 (base32
1169 "0fxlf233f49hjax786p4r650rd0ilvhnpyvw8hv1d1aqnkxy1wgj"))))
1170 (build-system python-build-system)
1171 (arguments
1172 '(;; No included tests
1173 #:tests? #f))
1174 (propagated-inputs
1175 `(("python-django" ,python-django)))
1176 (home-page
1177 "http://github.com/maraujop/django-crispy-forms")
1178 (synopsis "Tool to control Django forms without custom templates")
1179 (description
1180 "@code{django-crispy-forms} lets you easily build, customize and reuse
1181 forms using your favorite CSS framework, without writing template code.")
1182 (license license:expat)))
1183
1184 (define-public python-django-compressor
1185 (package
1186 (name "python-django-compressor")
1187 (version "2.4")
1188 (source
1189 (origin
1190 (method url-fetch)
1191 (uri (pypi-uri "django_compressor" version))
1192 (sha256
1193 (base32
1194 "0kx7bclfa0sxlsz6ka70zr9ra00lks0hmv1kc99wbanx6xhirvfj"))))
1195 (build-system python-build-system)
1196 (arguments
1197 '(#:phases
1198 (modify-phases %standard-phases
1199 (replace 'check
1200 (lambda* (#:key tests? #:allow-other-keys)
1201 (if tests?
1202 (begin
1203 (setenv "DJANGO_SETTINGS_MODULE" "compressor.test_settings")
1204 (invoke "django-admin" "test"
1205 "--pythonpath=."))
1206 #t))))
1207 ;; Tests fail with beautifulsoup 4.9+
1208 ;; https://github.com/django-compressor/django-compressor/issues/998
1209 #:tests? #f))
1210 (propagated-inputs
1211 `(("python-django-appconf" ,python-django-appconf)
1212 ("python-rcssmin" ,python-rcssmin)
1213 ("python-rjsmin" ,python-rjsmin)))
1214 (native-inputs
1215 `(("python-beautifulsoup4" ,python-beautifulsoup4)
1216 ("python-brotli" ,python-brotli)
1217 ("python-csscompressor" ,python-csscompressor)
1218 ("python-django-sekizai" ,python-django-sekizai)
1219 ("python-mock" ,python-mock)))
1220 (home-page "https://django-compressor.readthedocs.io/en/latest/")
1221 (synopsis
1222 "Compress linked and inline JavaScript or CSS into single cached files")
1223 (description
1224 "Django Compressor combines and compresses linked and inline Javascript or
1225 CSS in a Django templates into cacheable static files by using the compress
1226 template tag.")
1227 (license license:expat)))
1228
1229 (define-public python-django-override-storage
1230 (package
1231 (name "python-django-override-storage")
1232 (version "0.1.6")
1233 (source
1234 (origin
1235 (method url-fetch)
1236 (uri (pypi-uri "django-override-storage" version))
1237 (sha256
1238 (base32 "022arq94lxnlyykn8wvfnkykhi2dldnsn93pa2i41na551i0wpiv"))))
1239 (build-system python-build-system)
1240 (propagated-inputs
1241 `(("python-django" ,python-django)))
1242 (home-page
1243 "https://github.com/danifus/django-override-storage")
1244 (synopsis "Django test helpers to manage file storage side effects")
1245 (description
1246 "This project provides tools to help reduce the side effects of using
1247 FileFields during tests.")
1248 (license license:expat)))