Merge pull request #34835 from vanzef/i3ipc
pythonPackages.i3ipc: init at 1.4.0
This commit is contained in:
commit
b101148337
|
@ -0,0 +1,29 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchFromGitHub
|
||||||
|
, enum-compat
|
||||||
|
, xorgserver, pytest, i3, python
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "i3ipc";
|
||||||
|
version = "1.4.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "acrisci";
|
||||||
|
repo = "i3ipc-python";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "15drq16ncmjrgsri6gjzp0qm8abycm92nicm78q3k7vy7rqpvfnh";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ enum-compat ];
|
||||||
|
|
||||||
|
checkInputs = [ xorgserver pytest i3 ];
|
||||||
|
|
||||||
|
checkPhase = ''${python.interpreter} run-tests.py'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "An improved Python library to control i3wm";
|
||||||
|
homepage = https://github.com/acrisci/i3ipc-python;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ vanzef ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -243,6 +243,8 @@ in {
|
||||||
|
|
||||||
habanero = callPackage ../development/python-modules/habanero { };
|
habanero = callPackage ../development/python-modules/habanero { };
|
||||||
|
|
||||||
|
i3ipc = callPackage ../development/python-modules/i3ipc { };
|
||||||
|
|
||||||
intelhex = callPackage ../development/python-modules/intelhex { };
|
intelhex = callPackage ../development/python-modules/intelhex { };
|
||||||
|
|
||||||
lmtpd = callPackage ../development/python-modules/lmtpd { };
|
lmtpd = callPackage ../development/python-modules/lmtpd { };
|
||||||
|
|
Loading…
Reference in New Issue