[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55474] [PATCH v3 04/17] gnu: Add python-django-treebeard.
From: |
Nicolas Graves |
Subject: |
[bug#55474] [PATCH v3 04/17] gnu: Add python-django-treebeard. |
Date: |
Mon, 17 Apr 2023 16:53:24 +0200 |
* gnu/packages/django.scm (python-django-treebeard): New variable.
---
gnu/packages/django.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 9d1b2ad831..02bb6d35f4 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -354,6 +354,47 @@ (define-public python-django-taggit
application for simple tagging.")
(license license:bsd-3)))
+(define-public python-django-treebeard
+ (package
+ (name "python-django-treebeard")
+ (version "4.5.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "django-treebeard" version))
+ (sha256
+ (base32 "1nk9b40cp0jsxr3qsb16mh9xr0z3cvf69yp5ahh70fajf8bh05c0"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? inputs #:allow-other-keys)
+ (if tests?
+ (lambda _
+ (setenv "PYTHONPATH"
+ (string-append ".:" (getenv "GUIX_PYTHONPATH")))
+ (setenv "DJANGO_SETTINGS_MODULE" "treebeard.tests.settings")
+ (substitute* "setup.py" ((".*pythonpath.*") ""))
+ (invoke "pytest" "-vv"))
+ (format #t "test suite not run~%")))))))
+ (propagated-inputs (list python-django
+ python-sqlparse))
+ (native-inputs (list python-wheel
+ python-pytest-django))
+ (home-page "https://github.com/django-treebeard/django-treebeard/")
+ (synopsis "Efficient tree implementations for Django")
+ (description
+ "This package provides @code{django-treebeard}, an efficient tree
+implementations for Django. It includes 3 different tree implementations
+with the same API:
+@itemize
+@item Adjacency List
+@item Materialized Path
+@item Nested Sets
+@end itemize")
+ (license license:bsd-3)))
+
(define-public python-easy-thumbnails
(package
(name "python-easy-thumbnails")
--
2.39.2
- [bug#55474] [PATCH v3 01/17] gnu: python-django-taggit: Update to 3.1.0., Nicolas Graves, 2023/04/17
- [bug#55474] [PATCH v3 02/17] gnu: python-django-filter: Update to 22.1., Nicolas Graves, 2023/04/17
- [bug#55474] [PATCH v3 04/17] gnu: Add python-django-treebeard.,
Nicolas Graves <=
- [bug#55474] [PATCH v3 05/17] gnu: Add python-jinjalint., Nicolas Graves, 2023/04/17
- [bug#55474] [PATCH v3 03/17] gnu: Add python-django-modelcluster., Nicolas Graves, 2023/04/17
- [bug#55474] [PATCH v3 06/17] gnu: Add python-willow., Nicolas Graves, 2023/04/17
- [bug#55474] [PATCH v3 08/17] gnu: Add python-django-environ., Nicolas Graves, 2023/04/17
- [bug#55474] [PATCH v3 10/17] gnu: Add python-l18n., Nicolas Graves, 2023/04/17
- [bug#55474] [PATCH v3 07/17] gnu: Add python-django-request., Nicolas Graves, 2023/04/17
- [bug#55474] [PATCH v3 09/17] gnu: Add python-draftjs-exporter., Nicolas Graves, 2023/04/17
- [bug#55474] [PATCH v3 12/17] gnu: Add python-anyascii., Nicolas Graves, 2023/04/17
- [bug#55474] [PATCH v3 11/17] gnu: Add python-parsy., Nicolas Graves, 2023/04/17
- [bug#55474] [PATCH v3 13/17] gnu: Add python-telepath., Nicolas Graves, 2023/04/17