python3Packages.exif: init at 1.2.0

This commit is contained in:
David Reiss 2021-03-16 17:03:33 -07:00
parent 7799d689ab
commit 791fc803c7
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib, buildPythonPackage, fetchFromGitLab, isPy3k, plum-py, pytestCheckHook, baseline }:
buildPythonPackage rec {
pname = "exif";
version = "1.2.0";
disabled = !isPy3k;
src = fetchFromGitLab {
owner = "TNThieding";
repo = "exif";
rev = "686857c677f489759db90b1ad61fa1cc1cac5f9a";
sha256 = "0z2if23kmi0iyxviz32mlqs997i3dqpqfz6nznlwkhkkb6rkwwnh";
};
propagatedBuildInputs = [ plum-py ];
postPatch = ''
substituteInPlace setup.py \
--replace "plum-py==0.3.1" "plum-py>=0.3.1"
'';
checkInputs = [ pytestCheckHook baseline ];
meta = with lib; {
description = "Read and modify image EXIF metadata using Python";
homepage = "https://gitlab.com/TNThieding/exif";
license = licenses.mit;
maintainers = with maintainers; [ dnr ];
};
}

View File

@ -2202,6 +2202,8 @@ in {
executor = callPackage ../development/python-modules/executor { };
exif = callPackage ../development/python-modules/exif { };
exifread = callPackage ../development/python-modules/exifread { };
exrex = callPackage ../development/python-modules/exrex { };