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