mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
pythonPackage.txdbus: init at 1.1.0
This commit is contained in:
parent
740f4ba1ad
commit
fe7d3db9c6
22
pkgs/development/python-modules/txdbus/default.nix
Normal file
22
pkgs/development/python-modules/txdbus/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -5952,6 +5952,8 @@ in {
|
||||
|
||||
txtorcon = callPackage ../development/python-modules/txtorcon { };
|
||||
|
||||
txdbus = callPackage ../development/python-modules/txdbus { };
|
||||
|
||||
tzlocal = callPackage ../development/python-modules/tzlocal { };
|
||||
|
||||
u-msgpack-python = callPackage ../development/python-modules/u-msgpack-python { };
|
||||
|
Loading…
Reference in New Issue
Block a user