pythonPackages.thumborPexif: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-29 13:02:56 -04:00
parent 246bf6c54d
commit b9ad8d843d
2 changed files with 24 additions and 15 deletions

View File

@@ -0,0 +1,23 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
}:
buildPythonPackage rec {
pname = "thumbor-pexif";
version = "0.14";
disabled = ! isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "715cd24760c7c28d6270c79c9e29b55b8d952a24e0e56833d827c2c62451bc3c";
};
meta = with stdenv.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;
};
}