Merge master into staging

This commit is contained in:
Frederik Rietdijk
2018-04-08 10:54:17 +02:00
150 changed files with 2923 additions and 772 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

@@ -22,6 +22,6 @@ buildPythonPackage rec {
description = "Python interface to Graphviz graph drawing package";
homepage = https://github.com/pygraphviz/pygraphviz;
license = licenses.bsd3;
maintainers = with maintainers; [ matthiasbeyer ];
maintainers = with maintainers; [ ];
};
}

View File

@@ -27,6 +27,6 @@ buildPythonPackage rec {
meta = {
description = "A toolbelt of useful classes and functions to be used with python-requests";
homepage = http://toolbelt.rtfd.org;
maintainers = with lib.maintainers; [ matthiasbeyer jgeerds ];
maintainers = with lib.maintainers; [ jgeerds ];
};
}
}