ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / exifread / default.nix
blob1e4ba3c17695da7a89c62ac4ce4851c8a338b104
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "ExifRead";
8   version = "3.0.0";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-CsWjZBadvfK9YvlPXAc5cKtmlKMWYXf15EixDJQ+LKQ=";
13   };
15   meta = with lib; {
16     description = "Easy to use Python module to extract Exif metadata from tiff and jpeg files";
17     homepage    = "https://github.com/ianare/exif-py";
18     license     = licenses.bsd0;
19     maintainers = with maintainers; [ ];
20   };