depot/third_party/nixpkgs/pkgs/development/python-modules/piexif/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

22 lines
552 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pillow }:
buildPythonPackage rec {
pname = "piexif";
version = "1.1.3";
# Pillow needed for unit tests
checkInputs = [ pillow ];
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "06sz58q4mrw472p8fbnq7wsj8zpi5js5r8phm2hiwfmz0v33bjw3";
};
meta = with stdenv.lib; {
description = "Simplify Exif manipulations with Python";
homepage = "https://github.com/hMatoba/Piexif";
license = licenses.mit;
maintainers = with maintainers; [ jluttine ];
};
}