pythonPackages.libtmux: 0.6.4 -> 0.7.3

This commit is contained in:
rnhmjoj 2017-06-03 13:49:35 +02:00
parent 805ee69aa3
commit 11236d9baa
No known key found for this signature in database
GPG key ID: 362BB82B7E496B7C
2 changed files with 27 additions and 22 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchPypi, buildPythonPackage, pytest_29 }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "libtmux";
version = "0.7.3";
src = fetchPypi {
inherit pname version;
sha256 = "111qbgq28za12la5b0aa9rr7hg8235zy0kyzzryn7fa6z3i5k5z8";
};
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 ];
};
}

View file

@ -5516,28 +5516,7 @@ in {
libais = callPackage ../development/python-modules/libais { };
libtmux = buildPythonPackage rec {
name = "libtmux-${version}";
version = "0.6.4";
src = pkgs.fetchurl {
url = "mirror://pypi/l/libtmux/${name}.tar.gz";
sha256 = "0kmw7x8cxb2hj2mzibmg9nxaijhsm1kcm0vdihn99fhm5kw1phh5";
};
buildInputs = with self; [ 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 ];
};
};
libtmux = callPackage ../development/python-modules/libtmux { };
locket = buildPythonPackage rec {
name = "locket-${version}";