summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-versatileimagefield/default.nix
blob: d4f46e0355f70d285e87af950c63b1d402c65fd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 ];
  };
}