Merge master into staging
This commit is contained in:
23
pkgs/development/python-modules/ewmh/default.nix
Normal file
23
pkgs/development/python-modules/ewmh/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
@@ -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; [ ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user