My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ewmh/default.nix

23 lines
571 B

{ lib, buildPythonPackage, fetchPypi, xlib }:
buildPythonPackage rec {
pname = "ewmh";
version = "0.1.6";
src = fetchPypi {
inherit pname version;
sha256 = "0g9l14my3v8zlgq1yd8wh5gpara0qcapsfmvg7lq2lapglzhjsy5";
};
propagatedBuildInputs = [ xlib ];
# No tests included
doCheck = false;
meta = {
homepage = "https://github.com/parkouss/pyewmh";
description = "An implementation of EWMH (Extended Window Manager Hints), based on Xlib";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ bandresen ];
};
}