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