depot/third_party/nixpkgs/pkgs/development/python-modules/urwid-readline/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

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 ];
};
}