nixpkgs/pkgs/development/python-modules/piexif/default.nix
2017-10-27 21:34:42 +02:00

31 lines
853 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pillow }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "piexif";
version = "1.0.13";
# pillow needed for unit tests
buildInputs = [ pillow ];
postPatch = ''
# incompatibility with pillow => 4.2.0
# has been resolved in https://github.com/hMatoba/Piexif/commit/c3a8272f5e6418f223b25f6486d8ddda201bbdf1
# remove this in the next version
sed -i -e 's/RGBA/RGB/' tests/s_test.py
'';
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "1d3dde03bd6298393645bc11d585b67a6ea98fd7e9e1aded6d5d6ec3e4cfbdda";
};
meta = with stdenv.lib; {
description = "Simplify Exif manipulations with Python";
homepage = https://github.com/hMatoba/Piexif;
license = licenses.mit;
maintainers = with maintainers; [ jluttine ];
};
}