me
/
guix
Archived
1
0
Fork 0

gnu: Add python-easy-thumbnails.

* gnu/packages/django.scm (python-easy-thumbnails): New variable.
master
Christopher Baines 2020-03-19 23:47:50 +00:00
parent 29a2f61e97
commit 9ae3e79172
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 24 additions and 0 deletions

View File

@ -223,6 +223,30 @@ with arguments to the field constructor.")
"Django-taggit is a reusable Django application for simple tagging.")
(license license:bsd-3)))
(define-public python-easy-thumbnails
(package
(name "python-easy-thumbnails")
(version "2.7")
(source
(origin
(method url-fetch)
(uri (pypi-uri "easy-thumbnails" version))
(sha256
(base32
"14gzp5cv24z0qhxb7f7k7v9jgzpaj4n8yhjq83ynpx8183fs1rz4"))))
(build-system python-build-system)
(propagated-inputs
`(("python-django" ,python-django)
("python-pillow" ,python-pillow)))
(home-page "https://github.com/SmileyChris/easy-thumbnails")
(synopsis "Easy thumbnails for Django")
(description
"Easy thumbnails is a Django plugin to dynamically create thumbnails
based on source images. Multiple thumbnails can be created from a single
source image, using different options to control parameters like the image
size and quality.")
(license license:bsd-3)))
(define-public python-pytest-django
(package
(name "python-pytest-django")