pythonPackages.exifread: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-16 14:39:59 -04:00
committed by Frederik Rietdijk
parent 16dc45288e
commit 18c345dfaa
2 changed files with 23 additions and 15 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "ExifRead";
version = "2.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "1b90jf6m9vxh9nanhpyvqdq7hmfx5iggw1l8kq10jrs6xgr49qkr";
};
meta = with stdenv.lib; {
description = "Easy to use Python module to extract Exif metadata from tiff and jpeg files";
homepage = "https://github.com/ianare/exif-py";
license = licenses.bsd0;
maintainers = with maintainers; [ vozz ];
};
}