Merge pull request #135506 from r-ryantm/auto-update/python3.8-django-versatileimagefield

python38Packages.django-versatileimagefield: 2.1 -> 2.2
This commit is contained in:
Sandro 2021-08-26 18:57:02 +02:00 committed by GitHub
commit d3d4c29356
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,18 +2,17 @@
, buildPythonPackage
, fetchPypi
, django
, python
, pillow
, python_magic
}:
buildPythonPackage rec {
pname = "django-versatileimagefield";
version = "2.1";
version = "2.2";
src = fetchPypi {
inherit pname version;
sha256 = "e98f7b0abfbf2559d55b08be40911dcc44b6f3437a6c40d81bf66b6914837fdf";
sha256 = "6569d5c3e13c69ab8912ba5100084aa5abcdcffb8d1f5abc085b226e7bbd65b3";
};
propagatedBuildInputs = [ pillow python_magic ];
@ -22,6 +21,8 @@ buildPythonPackage rec {
# tests not included with pypi release
doCheck = false;
pythonImportsCheck = [ "versatileimagefield" ];
meta = with lib; {
description = "Replaces django's ImageField with a more flexible interface";
homepage = "https://github.com/respondcreate/django-versatileimagefield/";