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