blob: 3410e04421265228004d62e90d73bff49ca2f30f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
urwid,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "urwid-readline";
version = "0.15.1";
pyproject = true;
src = fetchFromGitHub {
owner = "rr-";
repo = "urwid_readline";
tag = version;
hash = "sha256-HiMMLzVE/Qw/PR7LXACyfzblxrGYrbMoi3/e/QzqF34=";
};
build-system = [ setuptools ];
dependencies = [ urwid ];
pythonImportsCheck = [ "urwid_readline" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Textbox edit widget for urwid that supports readline shortcuts";
homepage = "https://github.com/rr-/urwid_readline";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|