2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-29 17:02:56 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPy27
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "thumbor-pexif";
|
2018-11-04 10:35:19 +00:00
|
|
|
version = "0.14.1";
|
2018-10-29 17:02:56 +00:00
|
|
|
disabled = ! isPy27;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:19 +00:00
|
|
|
sha256 = "96dcc03ea6066d9546baf54f6841f4048b0b24a291eed65d098b3348c8872d99";
|
2018-10-29 17:02:56 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-29 17:02:56 +00:00
|
|
|
description = "Module to parse and edit the EXIF data tags in a JPEG image";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.benno.id.au/code/pexif/";
|
2018-10-29 17:02:56 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|