Files
Pol Dellaiera 4d9dd4d05f 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>
2026-06-02 14:45:38 +02:00

51 lines
958 B
Nix

{
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";
};
})