1{ lib, buildPythonPackage, fetchPypi, pygobject3 }: 2 3buildPythonPackage rec { 4 pname = "pydbus"; 5 version = "0.6.0"; 6 name = "${pname}-${version}"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0b0gipvz7vcfa9ddmwq2jrx16d4apb0hdnl5q4i3h8jlzwp1c1s2"; 11 }; 12 13 propagatedBuildInputs = [ pygobject3 ]; 14 15 meta = { 16 homepage = https://github.com/LEW21/pydbus; 17 description = "Pythonic DBus library"; 18 license = lib.licenses.lgpl2Plus; 19 maintainers = with lib.maintainers; [ gnidorah ]; 20 }; 21}