bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
29 lines
602 B
Nix
29 lines
602 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|