nixpkgs/pkgs/development/python-modules/piexif/default.nix

23 lines
552 B
Nix
Raw Normal View History

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