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