1{ lib, buildPythonPackage, fetchPypi, pygobject3, dbus }: 2 3buildPythonPackage rec { 4 pname = "dasbus"; 5 version = "1.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-FJrY/Iw9KYMhq1AVm1R6soNImaieR+IcbULyyS5W6U0="; 10 }; 11 12 propagatedBuildInputs = [ pygobject3 ]; 13 checkInputs = [ dbus ]; 14 15 meta = with lib; { 16 homepage = "https://github.com/rhinstaller/dasbus"; 17 description = "DBus library in Python3"; 18 license = licenses.lgpl21Only; 19 maintainers = with maintainers; [ fortuneteller2k ]; 20 }; 21}