about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ewmh/default.nix
blob: 9819f036887b72c0b53ab8c8f274415c917ab797 (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
27
28
29
{
  lib,
  buildPythonPackage,
  fetchPypi,
  xlib,
}:

buildPythonPackage rec {
  pname = "ewmh";
  version = "0.1.6";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0g9l14my3v8zlgq1yd8wh5gpara0qcapsfmvg7lq2lapglzhjsy5";
  };

  propagatedBuildInputs = [ xlib ];

  # No tests included
  doCheck = false;

  meta = {
    homepage = "https://github.com/parkouss/pyewmh";
    description = "Implementation of EWMH (Extended Window Manager Hints), based on Xlib";
    license = lib.licenses.lgpl3Plus;
    maintainers = with lib.maintainers; [ bandresen ];
  };
}