mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
31 lines
853 B
Nix
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 ];
|
|
};
|
|
}
|