summary refs log tree commit diff
path: root/pkgs/development/python-modules/thumborpexif/default.nix
blob: abfad4ffaac9d169bd04f5cf3c810c2e2249209e (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
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, isPy27
}:

buildPythonPackage rec {
  pname = "thumbor-pexif";
  version = "0.14.1";
  disabled = ! isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "96dcc03ea6066d9546baf54f6841f4048b0b24a291eed65d098b3348c8872d99";
  };

  meta = with lib; {
    description = "Module to parse and edit the EXIF data tags in a JPEG image";
    homepage = "http://www.benno.id.au/code/pexif/";
    license = licenses.mit;
  };

}