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