2022-03-05 16:20:37 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pygobject3, dbus }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "dasbus";
|
2023-01-20 10:41:00 +00:00
|
|
|
version = "1.7";
|
2022-03-05 16:20:37 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-01-20 10:41:00 +00:00
|
|
|
hash = "sha256-qIUNhBrf6O5fe7n4LPRJq5tJUNwGM4lwcXGODQA2tvY=";
|
2022-03-05 16:20:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pygobject3 ];
|
|
|
|
checkInputs = [ dbus ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/rhinstaller/dasbus";
|
|
|
|
description = "DBus library in Python3";
|
|
|
|
license = licenses.lgpl21Only;
|
|
|
|
maintainers = with maintainers; [ fortuneteller2k ];
|
|
|
|
};
|
|
|
|
}
|