depot/third_party/nixpkgs/pkgs/development/python-modules/txdbus/default.nix
Default email 4fc29cb41f Project import generated by Copybara.
GitOrigin-RevId: 135073a87b7e2c631739f4ffa016e1859b1a425e
2020-05-29 08:06:01 +02:00

22 lines
596 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, six, twisted }:
buildPythonPackage rec {
pname = "txdbus";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "0z41n1ikpdvk0nm8dbyh6g9bg781q4j6hg2b09b5k4wdqm17zxbg";
};
propagatedBuildInputs = [ six twisted ];
pythonImportsCheck = [ "txdbus" ];
meta = with stdenv.lib; {
description = "Native Python implementation of DBus for Twisted";
homepage = "https://github.com/cocagne/txdbus";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ geistesk ];
};
}