ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / django-versatileimagefield / default.nix
blob01c1b8353ba88f518e7018a1f4d8270c4eff404d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , django
5 , pillow
6 , python-magic
7 }:
9 buildPythonPackage rec {
10   pname = "django-versatileimagefield";
11   version = "2.2";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "6569d5c3e13c69ab8912ba5100084aa5abcdcffb8d1f5abc085b226e7bbd65b3";
16   };
17   propagatedBuildInputs = [ pillow python-magic ];
19   checkInputs = [ django ];
21   # tests not included with pypi release
22   doCheck = false;
24   pythonImportsCheck = [ "versatileimagefield" ];
26   meta = with lib; {
27     description = "Replaces django's ImageField with a more flexible interface";
28     homepage = "https://github.com/respondcreate/django-versatileimagefield/";
29     license = licenses.mit;
30     maintainers = with maintainers; [ mmai ];
31   };