3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/libtmux/default.nix

38 lines
673 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, buildPythonPackage
, poetry-core
, pytestCheckHook
, pkgs
}:
2017-06-03 12:49:35 +01:00
buildPythonPackage rec {
pname = "libtmux";
version = "0.10.3";
format = "pyproject";
2017-06-03 12:49:35 +01:00
src = fetchFromGitHub {
owner = "tmux-python";
repo = pname;
rev = "v${version}";
hash = "sha256:0syj8m4x2mcq96b76b7h75dsmcai22m15pfgkk90rpg7rp6sn772";
2017-06-03 12:49:35 +01:00
};
nativeBuildInputs = [
poetry-core
];
2017-06-03 12:49:35 +01:00
checkInputs = [
pkgs.procps
pkgs.tmux
pytestCheckHook
];
2018-01-20 11:57:34 +00:00
meta = with lib; {
2017-06-03 12:49:35 +01:00
description = "Scripting library for tmux";
homepage = "https://libtmux.readthedocs.io/";
2017-06-03 12:49:35 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ ];
2017-06-03 12:49:35 +01:00
};
}