about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/i3-py/default.nix
blob: 83a0dd8d2700e3951a76a3d3afd325bf64df2016 (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;
  };

}