[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55476] [PATCH 03/18] gnu: Add python-django-modelcluster.
From: |
Nicolas Graves |
Subject: |
[bug#55476] [PATCH 03/18] gnu: Add python-django-modelcluster. |
Date: |
Tue, 17 May 2022 09:54:33 +0200 |
* gnu/packages/django.scm (python-django-modelcluster): New variable.
---
gnu/packages/django.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index ea8ed040f8..fee4278708 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -780,6 +780,35 @@ (define-public python-django-contrib-comments
entries, photos, book chapters, or anything else.")
(license license:bsd-3)))
+(define-public python-django-modelcluster
+ (package
+ (name "python-django-modelcluster")
+ (version "5.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
"https://github.com/wagtail/django-modelcluster/archive/refs/tags/v5.3.tar.gz")
+ (sha256
+ (base32 "0xlhlnsr8gingbrsgbzhx79z9ds9i9rfii3gp38xnid01xjwlqln"))))
+ (build-system python-build-system)
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? inputs #:allow-other-keys)
+ (if tests?
+ (invoke "python" "runtests.py")
+ (format #t "test suite not run~%")))))))
+ (propagated-inputs (list python-django python-pytz))
+ (native-inputs (list python-django-taggit))
+ (home-page "https://github.com/wagtail/django-modelcluster")
+ (synopsis
+ "Django extension to allow working with 'clusters' of models as a single
unit")
+ (description
+ "This package provides a Django extension to allow working with
+'clusters' of models as a single unit, independently of the database")
+ (license license:bsd-3)))
+
(define-public python-django-pipeline
(package
(name "python-django-pipeline")
--
2.36.0
- [bug#55474] [PATCH 01/18] gnu: python-django-taggit: Update to 2.1.0., Nicolas Graves, 2022/05/17
- [bug#55473] [PATCH 02/18] gnu: python-django-filter: Update to 21.1., Nicolas Graves, 2022/05/17
- [bug#55475] [PATCH 05/18] gnu: Add python-jinjalint., Nicolas Graves, 2022/05/17
- [bug#55476] [PATCH 03/18] gnu: Add python-django-modelcluster.,
Nicolas Graves <=
- [bug#55474] [PATCH 08/18] gnu: Add python-django-request., Nicolas Graves, 2022/05/17
- [bug#55474] [PATCH 09/18] gnu: Add python-django-environ., Nicolas Graves, 2022/05/17
- [bug#55474] [PATCH 10/18] gnu: Add python-psycopg2-2.8., Nicolas Graves, 2022/05/17
- [bug#55474] [PATCH 11/18] gnu: Add python-beautifulsoup4-4.8., Nicolas Graves, 2022/05/17
- [bug#55474] [PATCH 06/18] gnu: Add python-flake8-blind-except., Nicolas Graves, 2022/05/17
- [bug#55474] [PATCH 14/18] gnu: Add python-parsy., Nicolas Graves, 2022/05/17
- [bug#55474] [PATCH 16/18] gnu: Add python-telepath., Nicolas Graves, 2022/05/17
- [bug#55474] [PATCH 17/18] gnu: Add python-wagtail., Nicolas Graves, 2022/05/17
- [bug#55474] [PATCH 15/18] gnu: Add python-anyascii., Nicolas Graves, 2022/05/17
- [bug#55474] [PATCH 04/18] gnu: Add python-django-treebeard., Nicolas Graves, 2022/05/17