biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / ewmh / default.nix
blob9819f036887b72c0b53ab8c8f274415c917ab797
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   xlib,
6 }:
8 buildPythonPackage rec {
9   pname = "ewmh";
10   version = "0.1.6";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0g9l14my3v8zlgq1yd8wh5gpara0qcapsfmvg7lq2lapglzhjsy5";
16   };
18   propagatedBuildInputs = [ xlib ];
20   # No tests included
21   doCheck = false;
23   meta = {
24     homepage = "https://github.com/parkouss/pyewmh";
25     description = "Implementation of EWMH (Extended Window Manager Hints), based on Xlib";
26     license = lib.licenses.lgpl3Plus;
27     maintainers = with lib.maintainers; [ bandresen ];
28   };