1{ lib, buildPythonPackage, fetchPypi, six, twisted }:
2
3buildPythonPackage rec {
4 pname = "txdbus";
5 version = "1.1.2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "8375a5fb68a12054f0def91af800c821fb2232949337756ed975f88d8ea2bc97";
10 };
11
12 propagatedBuildInputs = [ six twisted ];
13 pythonImportsCheck = [ "txdbus" ];
14
15 meta = with lib; {
16 description = "Native Python implementation of DBus for Twisted";
17 homepage = "https://github.com/cocagne/txdbus";
18 license = licenses.mit;
19 platforms = platforms.linux;
20 maintainers = with maintainers; [ oxzi ];
21 };
22}