blob: 27dd6e6d7d23ce6bcec5b5009a32698bae04deb8 (
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
|
{
buildPythonPackage,
fetchFromGitHub,
lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "python-iso639";
version = "2025.11.16";
pyproject = true;
src = fetchFromGitHub {
owner = "jacksonllee";
repo = "iso639";
tag = "v${version}";
hash = "sha256-noNB0DimbdEpk/VGJw7/jsl/JLK0f9xh+b8KqwQ2gYo=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "iso639" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://github.com/jacksonllee/iso639/blob/${src.tag}/CHANGELOG.md";
description = "ISO 639 language codes, names, and other associated information";
homepage = "https://github.com/jacksonllee/iso639";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|