python312Packages.t61codec: init at 2.0.0

This commit is contained in:
Gaetan Lepage
2025-04-28 18:52:13 +02:00
parent 03f4f61409
commit 278e097eee
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "t61codec";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "exhuma";
repo = "t61codec";
tag = "v${version}";
hash = "sha256-PNUahn6NpNWdK3yhcQ23qb08lkZeNW61GosShLiyPc8=";
};
build-system = [
poetry-core
];
pythonImportsCheck = [ "t61codec" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Python codec for T.61 strings";
homepage = "https://github.com/exhuma/t61codec";
changelog = "https://github.com/exhuma/t61codec/blob/v${version}/CHANGES.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
+2
View File
@@ -16888,6 +16888,8 @@ self: super: with self; {
sysv-ipc = callPackage ../development/python-modules/sysv-ipc { };
t61codec = callPackage ../development/python-modules/t61codec { };
tabcmd = callPackage ../development/python-modules/tabcmd { };
tableaudocumentapi = callPackage ../development/python-modules/tableaudocumentapi { };