1{ lib
2, buildPythonPackage
3, fetchPypi
4, isPy27
5}:
6
7buildPythonPackage rec {
8 pname = "thumbor-pexif";
9 version = "0.14.1";
10 disabled = ! isPy27;
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "96dcc03ea6066d9546baf54f6841f4048b0b24a291eed65d098b3348c8872d99";
15 };
16
17 meta = with lib; {
18 description = "Module to parse and edit the EXIF data tags in a JPEG image";
19 homepage = "http://www.benno.id.au/code/pexif/";
20 license = licenses.mit;
21 };
22
23}