mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 09:04:16 +01:00
Diff: https://github.com/jacksonllee/iso639/compare/v2025.11.16...v2026.1.31 Changelog: https://github.com/jacksonllee/iso639/blob/v2026.1.31/CHANGELOG.md
36 lines
812 B
Nix
36 lines
812 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-iso639";
|
|
version = "2026.1.31";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jacksonllee";
|
|
repo = "iso639";
|
|
tag = "v${version}";
|
|
hash = "sha256-mavTbjf57EYUMil3DBOmTZl8WwRW7sjxddb4WuK+YlI=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|