1{ stdenv, buildPythonPackage, fetchPypi, six, twisted }:
2
3buildPythonPackage rec {
4 pname = "txdbus";
5 version = "1.1.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "eefcffa4efbf82ba11222f17f5989fe1b2b6ef57226ef896c4a7084c990ba217";
10 };
11
12 propagatedBuildInputs = [ six twisted ];
13 pythonImportsCheck = [ "txdbus" ];
14
15 meta = with stdenv.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}