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