23 lines
550 B
Nix
Raw Normal View History

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