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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
702 B
Nix
Raw Normal View History

2021-03-17 00:03:33 +00:00
{ lib, buildPythonPackage, fetchFromGitLab, isPy3k, plum-py, pytestCheckHook, baseline }:
buildPythonPackage rec {
pname = "exif";
2022-11-22 15:25:23 +00:00
version = "1.3.5";
2021-03-17 00:03:33 +00:00
disabled = !isPy3k;
src = fetchFromGitLab {
owner = "TNThieding";
repo = "exif";
2022-11-22 15:25:23 +00:00
rev = "v${version}";
sha256 = "sha256-XSORawioXo8oPVZ3Jnxqa6GFIxnQZMT0vJitdmpBj0E=";
2021-03-17 00:03:33 +00:00
};
propagatedBuildInputs = [ plum-py ];
checkInputs = [ pytestCheckHook baseline ];
2022-11-22 15:25:23 +00:00
pythonImportsCheck = [ "exif" ];
2021-03-17 00:03:33 +00:00
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 ];
};
}