1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "ExifRead";
8 version = "3.0.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 hash = "sha256-CsWjZBadvfK9YvlPXAc5cKtmlKMWYXf15EixDJQ+LKQ=";
13 };
14
15 meta = with lib; {
16 description = "Easy to use Python module to extract Exif metadata from tiff and jpeg files";
17 homepage = "https://github.com/ianare/exif-py";
18 license = licenses.bsd0;
19 maintainers = with maintainers; [ ];
20 };
21
22}