36 lines
784 B
Nix
36 lines
784 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
urwid,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "urwid-readline";
|
|
version = "0.14";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rr-";
|
|
repo = "urwid_readline";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-ZTg+GZnu7R6Jf2+SIwVo57yHnjwuY92DElTJs8oRErE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ urwid ];
|
|
|
|
pythonImportsCheck = [ "urwid_readline" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "Textbox edit widget for urwid that supports readline shortcuts";
|
|
homepage = "https://github.com/rr-/urwid_readline";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|