Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / exifread / default.nix
blob31edf9707eba202838c710abf63adada89c3a285
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "exifread";
8   version = "3.0.0";
10   src = fetchPypi {
11     pname = "ExifRead";
12     inherit version;
13     hash = "sha256-CsWjZBadvfK9YvlPXAc5cKtmlKMWYXf15EixDJQ+LKQ=";
14   };
16   meta = with lib; {
17     description = "Easy to use Python module to extract Exif metadata from tiff and jpeg files";
18     mainProgram = "EXIF.py";
19     homepage    = "https://github.com/ianare/exif-py";
20     license     = licenses.bsd0;
21     maintainers = with maintainers; [ ];
22   };