1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "ExifRead"; 8 version = "2.3.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "a0f74af5040168d3883bbc980efe26d06c89f026dc86ba28eb34107662d51766"; 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}