Merge pull request #38532 from bandresen/pyewmh

pythonPackages.ewmh: init at 0.1.6
This commit is contained in:
Robert Schütz
2018-04-07 12:15:07 +02:00
committed by GitHub
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{ 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 ];
};
}