maryjane 99c14f90ed
python312Packages.urwid-satext: init at 0.8.0-unstable-2023-04-08
Co-authored-by: maryjane <ndukauba.oluchi@gmail.com>
Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
2025-07-14 14:32:30 -04:00

44 lines
871 B
Nix

{
lib,
buildPythonPackage,
fetchhg,
setuptools,
urwid,
}:
buildPythonPackage rec {
pname = "urwid-satext";
version = "0.8.0-unstable-2023-04-08";
pyproject = true;
src = fetchhg {
url = "https://repos.goffi.org/urwid-satext";
rev = "6689aa54b20cb38731c68d4d39d86d01d25c21fa";
hash = "sha256-llCONyYV2kVVmT4EsugnW9j5X5PIeYEnnk4i5rQnE0w=";
};
build-system = [
setuptools
];
dependencies = [
urwid
];
pythonImportsCheck = [
"urwid_satext"
];
# no pytest tests exist
doCheck = false;
meta = {
description = "SàT extension widgets for Urwid";
homepage = "https://libervia.org";
changelog = "https://repos.goffi.org/urwid-satext/file/${src.rev}/CHANGELOG";
license = lib.licenses.lgpl3Plus;
teams = with lib.teams; [ ngi ];
maintainers = [ lib.maintainers.oluchitheanalyst ];
};
}