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