depot/third_party/nixpkgs/pkgs/development/python-modules/django-versatileimagefield/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

32 lines
718 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, django
, python
, pillow
, python_magic
}:
buildPythonPackage rec {
pname = "django-versatileimagefield";
version = "2.0";
src = fetchPypi {
inherit pname version;
sha256 = "b197e7066f23bb73b001a61525f2b1cae3dd654bf208a944a7ff5a3fe6107b51";
};
propagatedBuildInputs = [ pillow python_magic ];
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 ];
};
}