nixpkgs/pkgs/development/python-modules/libtmux/default.nix
R. RyanTM 93b6beeb03 python37Packages.libtmux: 0.8.0 -> 0.8.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-libtmux/versions
2019-02-04 02:44:51 -08:00

27 lines
592 B
Nix

{ stdenv, fetchPypi, buildPythonPackage, pytest }:
buildPythonPackage rec {
pname = "libtmux";
version = "0.8.1";
src = fetchPypi {
inherit pname version;
sha256 = "0al5qcvzcl4v70vngbv39jg422jsy0m1b5q9pp54cc7m9b666jax";
};
checkInputs = [ pytest ];
postPatch = ''
sed -i 's/==.*$//' requirements/test.txt
'';
# No tests in archive
doCheck = false;
meta = with stdenv.lib; {
description = "Scripting library for tmux";
homepage = https://libtmux.readthedocs.io/;
license = licenses.bsd3;
maintainers = with maintainers; [ jgeerds ];
};
}