nixpkgs/pkgs/development/python-modules/libtmux/default.nix

27 lines
633 B
Nix
Raw Normal View History

2017-06-03 11:49:35 +00:00
{ stdenv, fetchPypi, buildPythonPackage, pytest_29 }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "libtmux";
2017-11-24 19:36:20 +00:00
version = "0.7.7";
2017-06-03 11:49:35 +00:00
src = fetchPypi {
inherit pname version;
2017-11-24 19:36:20 +00:00
sha256 = "5670c8da8d0192d932ac1e34f010e0eeb098cdb2af6daad0307b5418e7a37733";
2017-06-03 11:49:35 +00:00
};
buildInputs = [ pytest_29 ];
patchPhase = ''
sed -i 's/==.*$//' requirements/test.txt
'';
meta = with stdenv.lib; {
description = "Scripting library for tmux";
homepage = https://libtmux.readthedocs.io/;
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ jgeerds ];
};
}