Merge pull request #290657 from dotlambda/pyexiftool-init

python311Packages.pyexiftool: init at 0.5.6
This commit is contained in:
Robert Schütz 2024-02-28 01:24:30 +00:00 committed by GitHub
commit 54a3e9ec0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,47 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, exiftool
, setuptools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyexiftool";
version = "0.5.6";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "sylikc";
repo = "pyexiftool";
rev = "refs/tags/v${version}";
hash = "sha256-dgQkbpCbdq2JbupY0DyQbHPR9Bg+bwDo7yN03o3sX+A=";
};
postPatch = ''
substituteInPlace exiftool/constants.py \
--replace-fail 'DEFAULT_EXECUTABLE = "exiftool"' \
'DEFAULT_EXECUTABLE = "${lib.getExe exiftool}"'
'';
nativeBuildInputs = [
setuptools
];
pythonImportsCheck = [ "exiftool" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://github.com/sylikc/pyexiftool/blob/${src.rev}/CHANGELOG.md";
description = "Python wrapper for exiftool";
homepage = "https://github.com/sylikc/pyexiftool";
license = with lib.licenses; [ bsd3 /* or */ gpl3Plus ];
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View File

@ -10565,6 +10565,8 @@ self: super: with self; {
pyexcel-xls = callPackage ../development/python-modules/pyexcel-xls { };
pyexiftool = callPackage ../development/python-modules/pyexiftool { };
pyexploitdb = callPackage ../development/python-modules/pyexploitdb { };
pyezviz = callPackage ../development/python-modules/pyezviz { };