python3Packages.urwid: 3.0.4 -> 3.0.5 (#487674)

This commit is contained in:
dotlambda
2026-02-11 17:42:30 +00:00
committed by GitHub
2 changed files with 5 additions and 8 deletions

View File

@@ -90,8 +90,6 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
"test_xdg_existant"
# Tests are sensitive to performance
"test_sorting_fields"
# Test fails with urwid 3.0.4, but should work with 3.0.5 again
"test_todo_editor_list"
];
pythonImportsCheck = [

View File

@@ -7,6 +7,7 @@
pygobject3,
pyserial,
pytestCheckHook,
pythonOlder,
pyzmq,
setuptools,
setuptools-scm,
@@ -19,14 +20,14 @@
buildPythonPackage rec {
pname = "urwid";
version = "3.0.4";
version = "3.0.5";
pyproject = true;
src = fetchFromGitHub {
owner = "urwid";
repo = "urwid";
tag = version;
hash = "sha256-mKBLAoEBiqr//1Gl8DAmpUJ9woq6Zf2HhbYEirAoi2M=";
hash = "sha256-9ajcpyQTSASz8A4eM78vPjL+9Rk07Q30JmIrSx0Crpo=";
};
postPatch = ''
@@ -44,12 +45,10 @@ buildPythonPackage rec {
];
optional-dependencies = {
curses = [ ];
glib = [ pygobject3 ];
tornado = [ tornado ];
trio = [
exceptiongroup
trio
];
trio = [ trio ] ++ lib.optionals (pythonOlder "3.11") [ exceptiongroup ];
twisted = [ twisted ];
zmq = [ pyzmq ];
serial = [ pyserial ];