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

23 lines
604 B
Nix
Raw Normal View History

2020-05-15 20:17:41 +00:00
{ stdenv, buildPythonPackage, fetchPypi, six, twisted }:
buildPythonPackage rec {
pname = "txdbus";
2020-06-05 17:44:38 +00:00
version = "1.1.1";
2020-05-15 20:17:41 +00:00
src = fetchPypi {
inherit pname version;
2020-06-05 17:44:38 +00:00
sha256 = "eefcffa4efbf82ba11222f17f5989fe1b2b6ef57226ef896c4a7084c990ba217";
2020-05-15 20:17:41 +00:00
};
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; [ oxzi ];
2020-05-15 20:17:41 +00:00
};
}