pythonPackages.django-versatileimagefield: init at 1.10

This commit is contained in:
Henri Bourcereau 2019-01-27 11:49:32 +01:00 committed by worldofpeace
parent 177ed2f520
commit 0e9169e44c
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, django
, python
, pillow
}:
buildPythonPackage rec {
pname = "django-versatileimagefield";
version = "1.10";
src = fetchPypi {
inherit pname version;
sha256 = "0y0r6ssxyg9x1rylpyxg2ha2hl18080k5xp308k4ankpjm50hvc8";
};
propagatedBuildInputs = [ pillow ];
checkInputs = [ django ];
# tests not included with pypi release
doCheck = false;
meta = with stdenv.lib; {
description = "Replaces django's ImageField with a more flexible interface";
homepage = "https://github.com/respondcreate/django-versatileimagefield/";
license = licenses.mit;
maintainers = with maintainers; [ mmai ];
};
}

View File

@ -2955,6 +2955,8 @@ in {
django-sampledatahelper = callPackage ../development/python-modules/django-sampledatahelper { };
django-versatileimagefield = callPackage ../development/python-modules/django-versatileimagefield { };
django-sites = callPackage ../development/python-modules/django-sites { };
django-sr = callPackage ../development/python-modules/django-sr { };