pythonPackages.lxst: init at 0.4.4

Co-authored-by: Gaétan Lepage <gaetan@glepage.com>
Co-authored-by: Benjamin Saunders <ben.e.saunders@gmail.com>
This commit is contained in:
Pol Dellaiera
2025-07-01 16:25:03 -07:00
parent b75595fc9e
commit 4d9dd4d05f
2 changed files with 52 additions and 0 deletions
@@ -0,0 +1,50 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
audioop-lts,
lxmf,
numpy,
pycodec2,
rns,
soundcard,
}:
buildPythonPackage (finalAttrs: {
pname = "lxst";
version = "0.4.4";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "markqvist";
repo = "lxst";
tag = finalAttrs.version;
hash = "sha256-MAJ1n6EUZ6FmIfKKuM2ppbTVrWkxpjC5KIICo5stc+k=";
};
build-system = [
setuptools
];
dependencies = [
audioop-lts
pycodec2
numpy
rns
lxmf
soundcard
];
meta = {
changelog = "https://github.com/markqvist/LXST/releases/tag/${finalAttrs.version}";
description = "Simple and flexible real-time streaming format and delivery protocol for Reticulum";
homepage = "https://github.com/markqvist/LXST";
license = lib.licenses.cc-by-nc-nd-40;
maintainers = with lib.maintainers; [
drupol
];
mainProgram = "rnphone";
};
})
+2
View File
@@ -9527,6 +9527,8 @@ self: super: with self; {
lxml-html-clean = callPackage ../development/python-modules/lxml-html-clean { };
lxst = callPackage ../development/python-modules/lxst { };
lyricwikia = callPackage ../development/python-modules/lyricwikia { };
lz4 = callPackage ../development/python-modules/lz4 { };