python312Packages.t61codec: init at 2.0.0
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user