biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / txdbus / default.nix
blob33ed4a66a68e4138d2bbb931081f075b49cf7912
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   six,
6   twisted,
7 }:
9 buildPythonPackage rec {
10   pname = "txdbus";
11   version = "1.1.2";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "8375a5fb68a12054f0def91af800c821fb2232949337756ed975f88d8ea2bc97";
17   };
19   propagatedBuildInputs = [
20     six
21     twisted
22   ];
23   pythonImportsCheck = [ "txdbus" ];
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   };