blob: 40b7d7b00c52b3563e54b4eb8407fbd6a0947f10 (
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
39
40
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
gettext,
pytestCheckHook,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "setuptools-gettext";
version = "0.1.16";
pyproject = true;
src = fetchFromGitHub {
owner = "breezy-team";
repo = "setuptools-gettext";
tag = "v${finalAttrs.version}";
hash = "sha256-N59Hx6CyOzAin8KcMTAD++HFLDdJnJbql/U3fO2F3DU=";
};
build-system = [ setuptools ];
dependencies = [ setuptools ];
pythonImportsCheck = [ "setuptools_gettext" ];
nativeCheckInputs = [
pytestCheckHook
gettext
];
meta = {
changelog = "https://github.com/breezy-team/setuptools-gettext/releases/tag/${finalAttrs.src.tag}";
description = "Setuptools plugin for building mo files";
homepage = "https://github.com/breezy-team/setuptools-gettext";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ tomasajt ];
};
})
|