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

23 lines
550 B
Nix
Raw Normal View History

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