gnu: python-django-picklefield: Update to 3.0.1.
[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 "1.1.10")
715 (source (origin
716 (method url-fetch)
717 (uri (pypi-uri "django-bulk-update" version))
718 (sha256
719 (base32
720 "0mbng9m7swfc0dnidipbzlxfhlfjrv755dlnha5s4m9mgdxb1fhc"))))
721 (build-system python-build-system)
722 (arguments
723 ;; tests don't support django 1.10, but the module seems to work.
724 `(#:tests? #f))
725 (native-inputs
726 `(("six" ,python-six)
727 ("jsonfield" ,python-django-jsonfield)
728 ("python-dj-database-url" ,python-dj-database-url)))
729 (propagated-inputs
730 `(("python-django" ,python-django)))
731 (home-page "https://github.com/aykut/django-bulk-update")
732 (synopsis "Simple bulk update over Django ORM or with helper function")
733 (description
734 "Simple bulk update over Django ORM or with helper function. This
735 project aims to bulk update given objects using one query over Django ORM.")
736 (license license:expat)))
737
738 (define-public python2-django-bulk-update
739 (package-with-python2 python-django-bulk-update))
740
741 (define-public python-django-contact-form
742 (package
743 (name "python-django-contact-form")
744 (version "1.3")
745 (source (origin
746 (method url-fetch)
747 (uri (pypi-uri "django-contact-form" version))
748 (sha256
749 (base32
750 "0az590y56k5ahv4sixrkn54d3a8ig2q2z9pl6s3m4f533mx2gj17"))))
751 (build-system python-build-system)
752 (arguments
753 `(#:phases
754 (modify-phases %standard-phases
755 (replace 'check
756 (lambda _
757 ;; the next version will need "make test"
758 (invoke "flake8" "contact_form")
759 (invoke "coverage" "run" "contact_form/runtests.py")
760 (invoke "coverage" "report" "-m" "--fail-under" "0"))))))
761 (native-inputs
762 `(("python-coverage" ,python-coverage)
763 ("python-flake8" ,python-flake8)))
764 (propagated-inputs
765 `(("python-django" ,python-django)))
766 (home-page "https://github.com/ubernostrum/django-contact-form")
767 (synopsis "Contact form for Django")
768 (description
769 "This application provides simple, extensible contact-form functionality
770 for Django sites.")
771 (license license:bsd-3)))
772
773 (define-public python2-django-contact-form
774 (package-with-python2 python-django-contact-form))
775
776 (define-public python-django-contrib-comments
777 (package
778 (name "python-django-contrib-comments")
779 (version "1.8.0")
780 (source (origin
781 (method url-fetch)
782 (uri (pypi-uri "django-contrib-comments" version))
783 (sha256
784 (base32
785 "0bxsgw8jrkhg6r5s0z6ksfi4w8yknaqb1s9acmxd9pm3pnsnp5kx"))))
786 (build-system python-build-system)
787 (propagated-inputs
788 `(("python-django" ,python-django)))
789 (home-page "https://github.com/django/django-contrib-comments")
790 (synopsis "Comments framework")
791 (description
792 "Django used to include a comments framework; since Django 1.6 it's been
793 separated to a separate project. This is that project. This framework can be
794 used to attach comments to any model, so you can use it for comments on blog
795 entries, photos, book chapters, or anything else.")
796 (license license:bsd-3)))
797
798 (define-public python2-django-contrib-comments
799 (package-with-python2 python-django-contrib-comments))
800
801 (define-public python-django-overextends
802 (package
803 (name "python-django-overextends")
804 (version "0.4.3")
805 (source (origin
806 (method url-fetch)
807 (uri (pypi-uri "django-overextends" version))
808 (sha256
809 (base32
810 "0qc2pcf3i56pmfxh2jw7k3pgljd8xzficmkl2541n7bkcbngqfzm"))))
811 (build-system python-build-system)
812 (arguments
813 `(#:phases
814 (modify-phases %standard-phases
815 (replace 'check
816 (lambda _ (invoke "./test_project/manage.py" "test"))))))
817 (propagated-inputs
818 `(("python-django" ,python-django)))
819 (native-inputs
820 `(("sphinx-me" ,python-sphinx-me)))
821 (home-page "https://github.com/stephenmcd/django-overextends")
822 (synopsis "Circular template inheritance")
823 (description
824 "A Django reusable app providing the overextends template tag, a drop-in
825 replacement for Django's extends tag, which allows you to use circular template
826 inheritance. The primary use-case for overextends is to simultaneously
827 override and extend templates from other reusable apps, in your own Django
828 project.")
829 (license license:bsd-2)))
830
831 (define-public python2-django-overextends
832 (package-with-python2 python-django-overextends))
833
834 (define-public python-django-pipeline
835 (package
836 (name "python-django-pipeline")
837 (version "2.0.5")
838 (source
839 (origin
840 (method url-fetch)
841 (uri (pypi-uri "django-pipeline" version))
842 (sha256
843 (base32
844 "19vrbd5s12qw4qlg5n8ldv7zz2rs5y2sdid1i7lvgp92m71dayvc"))))
845 (build-system python-build-system)
846 (arguments
847 '(#:phases
848 (modify-phases %standard-phases
849 (add-after 'unpack 'patch-source
850 (lambda _
851 (substitute* "tests/tests/test_compiler.py"
852 (("\\/usr\\/bin\\/env")
853 (which "env")))))
854 (replace 'check
855 (lambda*(#:key tests? #:allow-other-keys)
856 (or
857 (not tests?)
858 (begin
859 (setenv "PYTHONPATH"
860 (string-append (getcwd) ":"
861 (getenv "PYTHONPATH")))
862 (setenv "DJANGO_SETTINGS_MODULE" "tests.settings")
863 (invoke "django-admin" "test" "tests"))))))))
864 (propagated-inputs
865 `(("python-css-html-js-minify" ,python-css-html-js-minify)
866 ("python-django" ,python-django)
867 ("python-slimit" ,python-slimit)
868 ("python-jsmin" ,python-jsmin)))
869 (home-page
870 "https://github.com/jazzband/django-pipeline")
871 (synopsis "Asset packaging library for Django")
872 (description
873 "Pipeline is an asset packaging library for Django, providing both CSS
874 and JavaScript concatenation and compression, built-in JavaScript template
875 support, and optional data-URI image and font embedding.")
876 (license license:expat)))
877
878 (define-public python-django-redis
879 (package
880 (name "python-django-redis")
881 (version "4.10.0")
882 (source (origin
883 (method url-fetch)
884 (uri (pypi-uri "django-redis" version))
885 (sha256
886 (base32
887 "1rxcwnv9ik0swkwvfqdi9i9baw6n8if5pj6q63fjh4p9chw3j2xg"))))
888 (build-system python-build-system)
889 (arguments
890 `(#:phases
891 (modify-phases %standard-phases
892 (replace 'check
893 (lambda _
894 (invoke "redis-server" "--daemonize" "yes")
895 (with-directory-excursion "tests"
896 (invoke "python" "runtests.py")))))))
897 (native-inputs
898 `(("python-fakeredis" ,python-fakeredis)
899 ("python-hiredis" ,python-hiredis)
900 ("python-mock" ,python-mock)
901 ("python-msgpack" ,python-msgpack)
902 ("redis" ,redis)))
903 (propagated-inputs
904 `(("python-django" ,python-django)
905 ("python-redis" ,python-redis)))
906 (home-page "https://github.com/niwibe/django-redis")
907 (synopsis "Full featured redis cache backend for Django")
908 (description
909 "Full featured redis cache backend for Django.")
910 (license license:bsd-3)))
911
912 (define-public python2-django-redis
913 (package-with-python2 python-django-redis))
914
915 (define-public python-django-rq
916 (package
917 (name "python-django-rq")
918 (version "1.3.1")
919 (source (origin
920 (method url-fetch)
921 (uri (pypi-uri "django-rq" version))
922 (sha256
923 (base32
924 "1ips1ikv5qhgwb58ssn496vgqg9qv6jinwmwbrg9l3s75fskd1l5"))))
925 (build-system python-build-system)
926 (arguments
927 `(#:phases
928 (modify-phases %standard-phases
929 (replace 'check
930 (lambda _
931 (invoke "redis-server" "--daemonize" "yes")
932 (invoke "django-admin.py" "test" "django_rq"
933 "--settings=django_rq.tests.settings"
934 "--pythonpath=."))))))
935 (native-inputs
936 `(("python-mock" ,python-mock)
937 ("redis" ,redis)))
938 (propagated-inputs
939 `(("python-django" ,python-django)
940 ("python-rq" ,python-rq)))
941 (home-page "https://github.com/ui/django-rq")
942 (synopsis "Django integration with RQ")
943 (description
944 "Django integration with RQ, a Redis based Python queuing library.
945 Django-RQ is a simple app that allows you to configure your queues in django's
946 settings.py and easily use them in your project.")
947 (license license:expat)))
948
949 (define-public python2-django-rq
950 (package-with-python2 python-django-rq))
951
952 (define-public python-django-q
953 (package
954 (name "python-django-q")
955 (version "1.3.2")
956 (source
957 (origin
958 (method url-fetch)
959 (uri (pypi-uri "django-q" version))
960 (sha256
961 (base32
962 "0ac3rjxv37bn97a62ly8b7qvbv765z6paiinzpwxx83nal2icc42"))))
963 (build-system python-build-system)
964 (arguments
965 '(#:phases
966 (modify-phases %standard-phases
967 (replace 'check
968 (lambda _
969 (setenv "DJANGO_SETTINGS_MODULE" "django_q.tests.settings")
970 (invoke "django-admin" "test" "django_q.tests"
971 "--pythonpath=."))))))
972 (propagated-inputs
973 `(("python-arrow" ,python-arrow)
974 ("python-blessed" ,python-blessed)
975 ("python-django" ,python-django)
976 ("python-django-picklefield" ,python-django-picklefield)))
977 (native-inputs
978 `(("python-django-redis" ,python-django-redis)
979 ("python-pytest-django" ,python-pytest-django)))
980 (home-page "https://django-q.readthedocs.io/")
981 (synopsis "Multiprocessing distributed task queue for Django")
982 (description
983 "Django Q is a native Django task queue, scheduler and worker application
984 using Python multiprocessing.")
985 (license license:expat)))
986
987 (define-public python-django-sortedm2m
988 (package
989 (name "python-django-sortedm2m")
990 (version "1.3.3")
991 (source (origin
992 (method url-fetch)
993 (uri (pypi-uri "django-sortedm2m" version))
994 (sha256
995 (base32
996 "0axf765i7b3c2s83nlph47asi8s071dhq8l7y382v1pw785s22vi"))))
997 (build-system python-build-system)
998 (arguments
999 ;; no tests.
1000 `(#:tests? #f))
1001 (propagated-inputs
1002 `(("python-django" ,python-django)))
1003 (home-page "https://github.com/gregmuellegger/django-sortedm2m")
1004 (synopsis "Drop-in replacement for django's own ManyToManyField")
1005 (description
1006 "Sortedm2m is a drop-in replacement for django's own ManyToManyField.
1007 The provided SortedManyToManyField behaves like the original one but remembers
1008 the order of added relations.")
1009 (license license:bsd-3)))
1010
1011 (define-public python2-django-sortedm2m
1012 (package-with-python2 python-django-sortedm2m))
1013
1014 (define-public python-django-appconf
1015 (package
1016 (name "python-django-appconf")
1017 (version "1.0.3")
1018 (source (origin
1019 (method url-fetch)
1020 (uri (pypi-uri "django-appconf" version))
1021 (sha256
1022 (base32
1023 "1qw0p9qh78bvkgi38ba58djwn0rd5j1lrkg2c2wk5wb7snj3rw9m"))))
1024 (build-system python-build-system)
1025 (propagated-inputs
1026 `(("python-django" ,python-django)
1027 ("python-six" ,python-six)))
1028 (home-page "https://github.com/django-compressor/django-appconf")
1029 (synopsis "Handle configuration defaults of packaged Django apps")
1030 (description
1031 "This app precedes Django's own AppConfig classes that act as \"objects
1032 [to] store metadata for an application\" inside Django's app loading mechanism.
1033 In other words, they solve a related but different use case than
1034 django-appconf and can't easily be used as a replacement. The similarity in
1035 name is purely coincidental.")
1036 (license license:bsd-3)))
1037
1038 (define-public python2-django-appconf
1039 (package-with-python2 python-django-appconf))
1040
1041 (define-public python-django-statici18n
1042 (package
1043 (name "python-django-statici18n")
1044 (version "1.3.0")
1045 (source (origin
1046 (method url-fetch)
1047 (uri (pypi-uri "django-statici18n" version))
1048 (sha256
1049 (base32
1050 "0alcf4g1nv69njhq5k3qw4mfl2k6dc18bik5nk0g1mnp3m8zyz7k"))))
1051 (build-system python-build-system)
1052 (propagated-inputs
1053 `(("python-django" ,python-django)
1054 ("django-appconf" ,python-django-appconf)))
1055 (home-page "https://github.com/zyegfryed/django-statici18n")
1056 (synopsis "Generate JavaScript catalog to static files")
1057 (description
1058 "A Django app that provides helper for generating JavaScript catalog to
1059 static files.")
1060 (license license:bsd-3)))
1061
1062 (define-public python2-django-statici18n
1063 (package-with-python2 python-django-statici18n))
1064
1065 (define-public python-django-tagging
1066 (package
1067 (name "python-django-tagging")
1068 (version "0.5.0")
1069 (source
1070 (origin
1071 (method url-fetch)
1072 (uri (pypi-uri "django-tagging" version))
1073 (sha256
1074 (base32
1075 "13afxx30chssclxzd9gqnvwm9qyrdpnlbs6iswdfa18phfj8zmi8"))))
1076 (build-system python-build-system)
1077 (arguments
1078 `(#:phases
1079 (modify-phases %standard-phases
1080 (replace 'check
1081 (lambda _
1082 (setenv "DJANGO_SETTINGS_MODULE" "tagging.tests.settings")
1083 (invoke "django-admin" "test" "--pythonpath=."))))))
1084 (inputs
1085 `(("python-django" ,python-django)))
1086 (home-page "https://github.com/Fantomas42/django-tagging")
1087 (synopsis "Generic tagging application for Django")
1088 (description "This package provides a generic tagging application for
1089 Django projects, which allows association of a number of tags with any
1090 @code{Model} instance and makes retrieval of tags simple.")
1091 (properties `((python2-variant . ,(delay python2-django-tagging))))
1092 (license license:bsd-3)))
1093
1094 (define-public python2-django-tagging
1095 (let ((base (package-with-python2
1096 (strip-python2-variant python-django-tagging))))
1097 (package
1098 (inherit base)
1099 (version "0.4.6")
1100 (source
1101 (origin
1102 (method url-fetch)
1103 (uri (pypi-uri "django-tagging" version))
1104 (sha256
1105 (base32
1106 "0s7b4v45j783yaxs7rni10k24san0ya77nqz4s7zdf3jhfpk42r1")))))))
1107
1108 (define-public python-djangorestframework
1109 (package
1110 (name "python-djangorestframework")
1111 (version "3.11.1")
1112 (source
1113 (origin
1114 (method url-fetch)
1115 (uri (pypi-uri "djangorestframework" version))
1116 (sha256
1117 (base32
1118 "0chbl1d0m1x23mmpdj7y85k3n32lpxrhcdl07ywnylfj9dd2vl3d"))))
1119 (build-system python-build-system)
1120 (arguments
1121 '(;; No included tests
1122 #:tests? #f))
1123 (propagated-inputs
1124 `(("python-django" ,python-django)))
1125 (home-page "https://www.django-rest-framework.org")
1126 (synopsis "Toolkit for building Web APIs with Django")
1127 (description
1128 "The Django REST framework is for building Web APIs with Django. It
1129 provides features like a web browseable API and authentication policies.")
1130 (license license:bsd-2)))
1131
1132 (define-public python-django-sekizai
1133 (package
1134 (name "python-django-sekizai")
1135 (version "1.1.0")
1136 (source
1137 (origin
1138 (method url-fetch)
1139 (uri (pypi-uri "django-sekizai" version))
1140 (sha256
1141 (base32
1142 "1nc4sv109valdn6azmgm2j01k7khxy2wnji84z63x7fxsikfdxp2"))))
1143 (build-system python-build-system)
1144 (arguments '(#:tests? #f)) ; Tests not included with release.
1145 (propagated-inputs
1146 `(("python-django" ,python-django)
1147 ("python-django-classy-tags" ,python-django-classy-tags)
1148 ("python-six" ,python-six)))
1149 (home-page "https://github.com/divio/django-sekizai")
1150 (synopsis "Template blocks for Django projects")
1151 (description "Sekizai means blocks in Japanese, and thats what this app
1152 provides. A fresh look at blocks. With @code{django-sekizai} you can define
1153 placeholders where your blocks get rendered and at different places in your
1154 templates append to those blocks. This is especially useful for css and
1155 javascript. Your subtemplates can now define css and javscript files to be
1156 included, and the css will be nicely put at the top and the javascript to the
1157 bottom, just like you should. Also sekizai will ignore any duplicate content in
1158 a single block.")
1159 (license license:bsd-3)))
1160
1161 (define-public python-django-crispy-forms
1162 (package
1163 (name "python-django-crispy-forms")
1164 (version "1.9.2")
1165 (source
1166 (origin
1167 (method url-fetch)
1168 (uri (pypi-uri "django-crispy-forms" version))
1169 (sha256
1170 (base32
1171 "0fxlf233f49hjax786p4r650rd0ilvhnpyvw8hv1d1aqnkxy1wgj"))))
1172 (build-system python-build-system)
1173 (arguments
1174 '(;; No included tests
1175 #:tests? #f))
1176 (propagated-inputs
1177 `(("python-django" ,python-django)))
1178 (home-page
1179 "http://github.com/maraujop/django-crispy-forms")
1180 (synopsis "Tool to control Django forms without custom templates")
1181 (description
1182 "@code{django-crispy-forms} lets you easily build, customize and reuse
1183 forms using your favorite CSS framework, without writing template code.")
1184 (license license:expat)))
1185
1186 (define-public python-django-compressor
1187 (package
1188 (name "python-django-compressor")
1189 (version "2.4")
1190 (source
1191 (origin
1192 (method url-fetch)
1193 (uri (pypi-uri "django_compressor" version))
1194 (sha256
1195 (base32
1196 "0kx7bclfa0sxlsz6ka70zr9ra00lks0hmv1kc99wbanx6xhirvfj"))))
1197 (build-system python-build-system)
1198 (arguments
1199 '(#:phases
1200 (modify-phases %standard-phases
1201 (replace 'check
1202 (lambda* (#:key tests? #:allow-other-keys)
1203 (if tests?
1204 (begin
1205 (setenv "DJANGO_SETTINGS_MODULE" "compressor.test_settings")
1206 (invoke "django-admin" "test"
1207 "--pythonpath=."))
1208 #t))))
1209 ;; Tests fail with beautifulsoup 4.9+
1210 ;; https://github.com/django-compressor/django-compressor/issues/998
1211 #:tests? #f))
1212 (propagated-inputs
1213 `(("python-django-appconf" ,python-django-appconf)
1214 ("python-rcssmin" ,python-rcssmin)
1215 ("python-rjsmin" ,python-rjsmin)))
1216 (native-inputs
1217 `(("python-beautifulsoup4" ,python-beautifulsoup4)
1218 ("python-brotli" ,python-brotli)
1219 ("python-csscompressor" ,python-csscompressor)
1220 ("python-django-sekizai" ,python-django-sekizai)
1221 ("python-mock" ,python-mock)))
1222 (home-page "https://django-compressor.readthedocs.io/en/latest/")
1223 (synopsis
1224 "Compress linked and inline JavaScript or CSS into single cached files")
1225 (description
1226 "Django Compressor combines and compresses linked and inline Javascript or
1227 CSS in a Django templates into cacheable static files by using the compress
1228 template tag.")
1229 (license license:expat)))
1230
1231 (define-public python-django-override-storage
1232 (package
1233 (name "python-django-override-storage")
1234 (version "0.1.6")
1235 (source
1236 (origin
1237 (method url-fetch)
1238 (uri (pypi-uri "django-override-storage" version))
1239 (sha256
1240 (base32 "022arq94lxnlyykn8wvfnkykhi2dldnsn93pa2i41na551i0wpiv"))))
1241 (build-system python-build-system)
1242 (propagated-inputs
1243 `(("python-django" ,python-django)))
1244 (home-page
1245 "https://github.com/danifus/django-override-storage")
1246 (synopsis "Django test helpers to manage file storage side effects")
1247 (description
1248 "This project provides tools to help reduce the side effects of using
1249 FileFields during tests.")
1250 (license license:expat)))