1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 version = "0.6.4";
8 pname = "i3-py";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "1sgl438jrb4cdyl7hbc3ymwsf7y3zy09g1gh7ynilxpllp37jc8y";
13 };
14
15 # no tests in tarball
16 doCheck = false;
17
18 meta = with lib; {
19 description = "Tools for i3 users and developers";
20 homepage = "https://github.com/ziberna/i3-py";
21 license = licenses.gpl3;
22 platforms = platforms.unix;
23 };
24
25}