mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
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:
commit
d3d4c29356
@ -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/";
|
||||
|
Loading…
Reference in New Issue
Block a user