mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
python313Packages.python-iso639: init at 2025.2.18
This commit is contained in:
parent
5a1a99b415
commit
844973ceed
2 changed files with 38 additions and 0 deletions
36
pkgs/development/python-modules/python-iso639/default.nix
Normal file
36
pkgs/development/python-modules/python-iso639/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchFromGitHub,
|
||||||
|
lib,
|
||||||
|
pytestCheckHook,
|
||||||
|
setuptools,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-iso639";
|
||||||
|
version = "2025.2.18";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jacksonllee";
|
||||||
|
repo = "iso639";
|
||||||
|
tag = "v${version}";
|
||||||
|
hash = "sha256-CVLyeXA0FXLCthNO3SLgTvxi4sJI5fPhuqEbnDb4L/s=";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -14553,6 +14553,8 @@ self: super: with self; {
|
||||||
|
|
||||||
python-ironicclient = callPackage ../development/python-modules/python-ironicclient { };
|
python-ironicclient = callPackage ../development/python-modules/python-ironicclient { };
|
||||||
|
|
||||||
|
python-iso639 = callPackage ../development/python-modules/python-iso639 { };
|
||||||
|
|
||||||
python-izone = callPackage ../development/python-modules/python-izone { };
|
python-izone = callPackage ../development/python-modules/python-izone { };
|
||||||
|
|
||||||
python-jenkins = callPackage ../development/python-modules/python-jenkins { };
|
python-jenkins = callPackage ../development/python-modules/python-jenkins { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue