1{ lib, fetchPypi, buildPythonPackage, pytest }:
2
3buildPythonPackage rec {
4 pname = "libtmux";
5 version = "0.8.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1d35b9f8451944d31c5ed22ed9e6c8e18034adcc75718fcc5b27fbd9621543e1";
10 };
11
12 checkInputs = [ pytest ];
13 postPatch = ''
14 sed -i 's/==.*$//' requirements/test.txt
15 '';
16
17 # No tests in archive
18 doCheck = false;
19
20 meta = with lib; {
21 description = "Scripting library for tmux";
22 homepage = "https://libtmux.readthedocs.io/";
23 license = licenses.bsd3;
24 maintainers = with maintainers; [ ];
25 };
26}