Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 25 lines 537 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "exifread"; 9 version = "3.0.0"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 pname = "ExifRead"; 14 inherit version; 15 hash = "sha256-CsWjZBadvfK9YvlPXAc5cKtmlKMWYXf15EixDJQ+LKQ="; 16 }; 17 18 meta = with lib; { 19 description = "Easy to use Python module to extract Exif metadata from tiff and jpeg files"; 20 mainProgram = "EXIF.py"; 21 homepage = "https://github.com/ianare/exif-py"; 22 license = licenses.bsd0; 23 maintainers = [ ]; 24 }; 25}