1{ stdenv, buildPythonPackage, fetchPypi, pillow }:
2
3buildPythonPackage rec {
4 pname = "piexif";
5 version = "1.1.3";
6
7 # Pillow needed for unit tests
8 checkInputs = [ pillow ];
9
10 src = fetchPypi {
11 inherit pname version;
12 extension = "zip";
13 sha256 = "06sz58q4mrw472p8fbnq7wsj8zpi5js5r8phm2hiwfmz0v33bjw3";
14 };
15
16 meta = with stdenv.lib; {
17 broken = true;
18 description = "Simplify Exif manipulations with Python";
19 homepage = "https://github.com/hMatoba/Piexif";
20 license = licenses.mit;
21 maintainers = with maintainers; [ jluttine ];
22 };
23}