blob: 90a0f51b0a47e6cd7d8e6813617c04ce20336f6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
lib,
buildPythonPackage,
fetchFromGitLab,
plum-py,
pytestCheckHook,
baseline,
}:
buildPythonPackage rec {
pname = "exif";
version = "1.6.0";
format = "setuptools";
src = fetchFromGitLab {
owner = "TNThieding";
repo = "exif";
tag = "v${version}";
hash = "sha256-uiHL3m0C6+YnAHRLwzMCSzffrQsSyVcuem6FBtTLxek=";
};
propagatedBuildInputs = [ plum-py ];
nativeCheckInputs = [
pytestCheckHook
baseline
];
pythonImportsCheck = [ "exif" ];
meta = {
description = "Read and modify image EXIF metadata using Python";
homepage = "https://gitlab.com/TNThieding/exif";
changelog = "https://gitlab.com/TNThieding/exif/-/blob/v${version}/docs/release_notes.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dnr ];
};
}
|