Commit b177e9f7 authored by Robert Schütz's avatar Robert Schütz
Browse files

python311Packages.pyexiftool: init at 0.5.6

parent 0e74ca98
Loading
Loading
Loading
Loading
+47 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10533,6 +10533,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 { };