[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/16: gnu: Add python-django-filter.
From: |
Efraim Flashner |
Subject: |
09/16: gnu: Add python-django-filter. |
Date: |
Sun, 18 Sep 2016 20:19:59 +0000 (UTC) |
efraim pushed a commit to branch master
in repository guix.
commit 894810c7c951d054e4b456f9c03e315cda1bd765
Author: Efraim Flashner <address@hidden>
Date: Sun Sep 11 21:31:44 2016 +0300
gnu: Add python-django-filter.
* gnu/packages/django.scm (python-django-filter): 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 bd39314..923c4e2 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -162,3 +162,32 @@ useful tools for testing Django applications and
projects.")
(native-inputs
`(("python2-setuptools" ,python2-setuptools)
,@(package-native-inputs base))))))
+
+(define-public python-django-filter
+ (package
+ (name "python-django-filter")
+ (version "0.14.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "django-filter" version))
+ (sha256
+ (base32
+ "0f78hmk8c903zwfzlsiw7ivgag81ymmb5hi73rzxbhnlg2v0l3fx"))))
+ (build-system python-build-system)
+ (home-page "https://django-filter.readthedocs.io/en/latest/")
+ (synopsis "Reusable Django application to filter querysets dynamically")
+ (description
+ "Django-filter is a generic, reusable application to alleviate writing
+some of the more mundane bits of view code. Specifically, it allows users to
+filter down a queryset based on a model’s fields, displaying the form to let
+them do this.")
+ (properties `((python2-variant . ,(delay python2-django-filter))))
+ (license license:bsd-3)))
+
+(define-public python2-django-filter
+ (let ((base (package-with-python2
+ (strip-python2-variant python-django-filter))))
+ (package (inherit base)
+ (native-inputs
+ `(("python2-setuptools" ,python2-setuptools)
+ ,@(package-native-inputs base))))))
- branch master updated (bff8be8 -> b8ea520), Efraim Flashner, 2016/09/18
- 05/16: gnu: Add python-graphql-core., Efraim Flashner, 2016/09/18
- 14/16: gnu: Add python-bcrypt., Efraim Flashner, 2016/09/18
- 01/16: gnu: Add python-pika., Efraim Flashner, 2016/09/18
- 09/16: gnu: Add python-django-filter.,
Efraim Flashner <=
- 02/16: gnu: Add python-peewee., Efraim Flashner, 2016/09/18
- 06/16: gnu: Add python-graphql-relay., Efraim Flashner, 2016/09/18
- 04/16: gnu: Add python-pytest-mock., Efraim Flashner, 2016/09/18
- 16/16: gnu: Add onionshare., Efraim Flashner, 2016/09/18
- 03/16: gnu: Add python-promise., Efraim Flashner, 2016/09/18
- 11/16: gnu: Add python-consul., Efraim Flashner, 2016/09/18
- 08/16: gnu: Add python-pytest-django., Efraim Flashner, 2016/09/18
- 13/16: gnu: Add python-nose2., Efraim Flashner, 2016/09/18
- 07/16: gnu: Add python-sqlalchemy-utils., Efraim Flashner, 2016/09/18
- 15/16: gnu: Add python-nautilus., Efraim Flashner, 2016/09/18