about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/exifread/default.nix
blob: ab8fde6f8cc3b0c8e6a282f178d86902aa75a201 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "ExifRead";
  version = "3.0.0";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-CsWjZBadvfK9YvlPXAc5cKtmlKMWYXf15EixDJQ+LKQ=";
  };

  meta = with lib; {
    description = "Easy to use Python module to extract Exif metadata from tiff and jpeg files";
    homepage    = "https://github.com/ianare/exif-py";
    license     = licenses.bsd0;
    maintainers = with maintainers; [ ];
  };

}