about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pydbus
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2017-12-21 20:16:19 +0400
committerzimbatm <zimbatm@zimbatm.com>2017-12-21 16:16:19 +0000
commitb9851a975e8255f8799aed3f4efaa399e19ea733 (patch)
treed9f53a0bcca76261cf0ffccdd03125e096c7c5a3 /pkgs/development/python-modules/pydbus
parent9e119825f3513e84a22b97e50343c0bc323d11eb (diff)
Make less known wayland compositors usable (#32285)
* bemenu: init at 2017-02-14

* velox: 2015-11-03 -> 2017-07-04

* orbment, velox: don't expose subprojects

the development of orbment and velox got stuck
their subprojects (bemenu, dmenu-wayland, st-wayland) don't work correctly outside of parent projects
so hide them to not confuse people
swc and wld libraries are unpopular and unlike wlc are not used by anything except velox

* pythonPackages.pydbus: init at 0.6.0

* way-cooler: 0.5.2 -> 0.6.2

* nixos/way-cooler: add module

* dconf module: use for wayland

non-invasive approach for #31293
see discussion at #32210

* sway: embed LD_LIBRARY_PATH for #32755

* way-cooler: switch from buildRustPackage to buildRustCrate #31150
Diffstat (limited to 'pkgs/development/python-modules/pydbus')
-rw-r--r--pkgs/development/python-modules/pydbus/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pydbus/default.nix b/pkgs/development/python-modules/pydbus/default.nix
new file mode 100644
index 0000000000000..058f8b6b88735
--- /dev/null
+++ b/pkgs/development/python-modules/pydbus/default.nix
@@ -0,0 +1,21 @@
+{ lib, buildPythonPackage, fetchPypi, pygobject3 }:
+
+buildPythonPackage rec {
+  pname = "pydbus";
+  version = "0.6.0";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0b0gipvz7vcfa9ddmwq2jrx16d4apb0hdnl5q4i3h8jlzwp1c1s2";
+  };
+
+  propagatedBuildInputs = [ pygobject3 ];
+
+  meta = {
+    homepage = https://github.com/LEW21/pydbus;
+    description = "Pythonic DBus library";
+    license = lib.licenses.lgpl2Plus;
+    maintainers = with lib.maintainers; [ gnidorah ];
+  };
+}