about summary refs log tree commit diff
path: root/pkgs/development/python-modules/libtmux/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/libtmux/default.nix')
-rw-r--r--pkgs/development/python-modules/libtmux/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/libtmux/default.nix b/pkgs/development/python-modules/libtmux/default.nix
index e5b7975d5ede3..b3ad5d6cd6896 100644
--- a/pkgs/development/python-modules/libtmux/default.nix
+++ b/pkgs/development/python-modules/libtmux/default.nix
@@ -12,14 +12,14 @@
 
 buildPythonPackage rec {
   pname = "libtmux";
-  version = "0.21.0";
+  version = "0.21.1";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "tmux-python";
     repo = pname;
     rev = "refs/tags/v${version}";
-    hash = "sha256-nZPVS3jNz2e2LTlWiSz1fN7MzqJs/CqtAt6UVZaPPTY=";
+    hash = "sha256-mWujuw2n5PfGdVnORTyYe83BGnwwZ/BFxt9BR5udZDA=";
   };
 
   postPatch = ''
@@ -43,6 +43,8 @@ buildPythonPackage rec {
   disabledTests = [
     # Fail with: 'no server running on /tmp/tmux-1000/libtmux_test8sorutj1'.
     "test_new_session_width_height"
+    # Assertion error
+    "test_capture_pane_start"
   ] ++ lib.optionals stdenv.isDarwin [
     # tests/test_pane.py:113: AssertionError
     "test_capture_pane_start"
@@ -53,7 +55,9 @@ buildPythonPackage rec {
     "tests/legacy_api/test_test.py"
   ];
 
-  pythonImportsCheck = [ "libtmux" ];
+  pythonImportsCheck = [
+    "libtmux"
+  ];
 
   meta = with lib; {
     description = "Typed scripting library / ORM / API wrapper for tmux";