Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
602 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
};
}