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

buildPythonPackage rec {
  pname = "piexif";
  version = "1.1.2";

  # Pillow needed for unit tests
  checkInputs = [ pillow ];

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "0dj6wiw4mk65zn7p0qpghra39mf88m3ph2xn7ff9jvasgczrgkb0";
  };

  meta = with stdenv.lib; {
    description = "Simplify Exif manipulations with Python";
    homepage = https://github.com/hMatoba/Piexif;
    license = licenses.mit;
    maintainers = with maintainers; [ jluttine ];
  };
}