python312Packages.urwid-readline: 0.14 -> 0.15.1 (#359042)

This commit is contained in:
Robert Schütz 2024-11-26 15:52:49 -08:00 committed by GitHub
commit 69661586d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,19 +9,19 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "urwid-readline"; pname = "urwid-readline";
version = "0.14"; version = "0.15.1";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rr-"; owner = "rr-";
repo = "urwid_readline"; repo = "urwid_readline";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-ZTg+GZnu7R6Jf2+SIwVo57yHnjwuY92DElTJs8oRErE="; hash = "sha256-HiMMLzVE/Qw/PR7LXACyfzblxrGYrbMoi3/e/QzqF34=";
}; };
nativeBuildInputs = [ setuptools ]; build-system = [ setuptools ];
propagatedBuildInputs = [ urwid ]; dependencies = [ urwid ];
pythonImportsCheck = [ "urwid_readline" ]; pythonImportsCheck = [ "urwid_readline" ];