mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-django-q2.
* gnu/packages/django.scm (python-django-q2): New variable. Change-Id: Ia96caca56b08903f4e8e49105baf4af430697cfc
This commit is contained in:
parent
ba4619f5ab
commit
5f17e6b462
1 changed files with 29 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
||||||
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2021 Luis Felipe López Acevedo <luis.felipe.la@protonmail.com>
|
;;; Copyright © 2021 Luis Felipe López Acevedo <luis.felipe.la@protonmail.com>
|
||||||
;;; Copyright © 2022 Pradana Aumars <paumars@courrier.dev>
|
;;; Copyright © 2022 Pradana Aumars <paumars@courrier.dev>
|
||||||
|
;;; Copyright © 2025 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1124,6 +1125,34 @@ settings.py and easily use them in your project.")
|
||||||
using Python multiprocessing.")
|
using Python multiprocessing.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-django-q2
|
||||||
|
(package
|
||||||
|
(name "python-django-q2")
|
||||||
|
(version "1.7.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "django_q2" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0zd1zpi5d3ky26i9rv0aii6kkb6gwvpypnwmsjbmpxiwawhv242j"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
;; FIXME: Tests require disque, Redis, MongoDB, Docker.
|
||||||
|
#:tests? #f))
|
||||||
|
(native-inputs
|
||||||
|
(list python-poetry-core))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-django
|
||||||
|
python-django-picklefield))
|
||||||
|
(home-page "https://django-q2.readthedocs.org")
|
||||||
|
(synopsis "Multiprocessing distributed task queue for Django")
|
||||||
|
(description
|
||||||
|
"This package provides a multiprocessing distributed task queue for
|
||||||
|
Django. Django Q2 is a fork of Django Q with the new updated version of
|
||||||
|
Django Q, dependencies updates, docs updates and several bug fixes.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-django-sortedm2m
|
(define-public python-django-sortedm2m
|
||||||
(package
|
(package
|
||||||
(name "python-django-sortedm2m")
|
(name "python-django-sortedm2m")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue