nixpkgs/pkgs/development/python-modules/txdbus/default.nix

23 lines
594 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, six, twisted }:
2020-05-15 20:17:41 +00:00
buildPythonPackage rec {
pname = "txdbus";
2020-10-25 09:06:58 +00:00
version = "1.1.2";
2020-05-15 20:17:41 +00:00
src = fetchPypi {
inherit pname version;
2020-10-25 09:06:58 +00:00
sha256 = "8375a5fb68a12054f0def91af800c821fb2232949337756ed975f88d8ea2bc97";
2020-05-15 20:17:41 +00:00
};
propagatedBuildInputs = [ six twisted ];
pythonImportsCheck = [ "txdbus" ];
meta = with lib; {
2020-05-15 20:17:41 +00:00
description = "Native Python implementation of DBus for Twisted";
homepage = "https://github.com/cocagne/txdbus";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ oxzi ];
2020-05-15 20:17:41 +00:00
};
}