linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / libtmux / default.nix
blobe019951f6ff12f9d7c8bec9428d07b9e8e4cdafb
1 { lib, fetchPypi, buildPythonPackage, pytest }:
3 buildPythonPackage rec {
4   pname = "libtmux";
5   version = "0.8.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1d35b9f8451944d31c5ed22ed9e6c8e18034adcc75718fcc5b27fbd9621543e1";
10   };
12   checkInputs = [ pytest ];
13   postPatch = ''
14     sed -i 's/==.*$//' requirements/test.txt
15   '';
17   # No tests in archive
18   doCheck = false;
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   };