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