Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / txdbus / default.nix
blob31afbd4fdf950723ef786fe7dc64d2cfbd51506c
1 { lib, buildPythonPackage, fetchPypi, six, twisted }:
3 buildPythonPackage rec {
4   pname = "txdbus";
5   version = "1.1.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "8375a5fb68a12054f0def91af800c821fb2232949337756ed975f88d8ea2bc97";
10   };
12   propagatedBuildInputs = [ six twisted ];
13   pythonImportsCheck = [ "txdbus" ];
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   };