summary refs log tree commit diff
path: root/pkgs/development/python-modules/easy-thumbnails/default.nix
blob: fbe5c02771db88f30291533a977564a638d5d191 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchPypi,
  django, pillow
}:

buildPythonPackage rec {
  pname = "easy-thumbnails";
  name = "${pname}-${version}";
  version = "2.5";

  meta = {
    description = "Easy thumbnails for Django";
    homepage = https://github.com/SmileyChris/easy-thumbnails;
    license = lib.licenses.bsd3;
  };

  src = fetchPypi {
    inherit pname version;
    sha256 = "e244d1f26027fc32c6ca60ffb0169a39099446f614b0433e907a2588ae7d9b95";
  };

  propagatedBuildInputs = [ django pillow ];
}