Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / txdbus / default.nix
blob3f377313a0bd24f96cc31b27a78cc38f6d6059db
1 { lib, buildPythonPackage, fetchPypi, six, twisted }:
3 buildPythonPackage rec {
4   pname = "txdbus";
5   version = "1.1.2";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "8375a5fb68a12054f0def91af800c821fb2232949337756ed975f88d8ea2bc97";
11   };
13   propagatedBuildInputs = [ six twisted ];
14   pythonImportsCheck = [ "txdbus" ];
16   meta = with lib; {
17     description = "Native Python implementation of DBus for Twisted";
18     homepage = "https://github.com/cocagne/txdbus";
19     license = licenses.mit;
20     platforms = platforms.linux;
21     maintainers = with maintainers; [ oxzi ];
22   };