2017-08-28 10:16:16 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pillow }:
|
2017-05-06 19:20:25 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "piexif";
|
2019-07-16 12:50:12 +01:00
|
|
|
version = "1.1.3";
|
2017-05-06 19:20:25 +01:00
|
|
|
|
2018-10-29 08:41:53 +00:00
|
|
|
# Pillow needed for unit tests
|
|
|
|
checkInputs = [ pillow ];
|
2017-08-28 10:16:16 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2019-07-16 12:50:12 +01:00
|
|
|
sha256 = "06sz58q4mrw472p8fbnq7wsj8zpi5js5r8phm2hiwfmz0v33bjw3";
|
2017-05-06 19:20:25 +01:00
|
|
|
};
|
|
|
|
|
2017-08-28 10:16:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-05-06 19:20:25 +01:00
|
|
|
description = "Simplify Exif manipulations with Python";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/hMatoba/Piexif";
|
2017-08-28 10:16:16 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jluttine ];
|
2017-05-06 19:20:25 +01:00
|
|
|
};
|
|
|
|
}
|