about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/piexif/default.nix
blob: 595e246f7778be9377ea1814b8c99de945e7c45d (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.3";

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

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "06sz58q4mrw472p8fbnq7wsj8zpi5js5r8phm2hiwfmz0v33bjw3";
  };

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