3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.ewmh: init at 0.1.6

This commit is contained in:
Benjamin Andresen 2018-04-06 21:32:16 +02:00
parent 5e7e762b67
commit 1d0bff83d9
2 changed files with 25 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 ];
};
}

View file

@ -233,6 +233,8 @@ in {
email_validator = callPackage ../development/python-modules/email-validator { };
ewmh = callPackage ../development/python-modules/ewmh { };
dbus-python = callPackage ../development/python-modules/dbus {
dbus = pkgs.dbus;
};