Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 504 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "ExifRead"; 8 version = "2.1.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1b90jf6m9vxh9nanhpyvqdq7hmfx5iggw1l8kq10jrs6xgr49qkr"; 13 }; 14 15 meta = with stdenv.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; [ vozz ]; 20 }; 21 22}