pythonPackages.libtmux: 0.6.4 -> 0.7.3
This commit is contained in:
parent
805ee69aa3
commit
11236d9baa
26
pkgs/development/python-modules/libtmux/default.nix
Normal file
26
pkgs/development/python-modules/libtmux/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -5516,28 +5516,7 @@ in {
|
|||||||
|
|
||||||
libais = callPackage ../development/python-modules/libais { };
|
libais = callPackage ../development/python-modules/libais { };
|
||||||
|
|
||||||
libtmux = buildPythonPackage rec {
|
libtmux = callPackage ../development/python-modules/libtmux { };
|
||||||
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 ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
locket = buildPythonPackage rec {
|
locket = buildPythonPackage rec {
|
||||||
name = "locket-${version}";
|
name = "locket-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user