python3Packages.pyxiaomigateway: init at 0.13.4

This commit is contained in:
Fabian Affolter 2021-02-19 17:41:39 +01:00
parent cad32a90a1
commit 569b2425e5
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, cryptography
}:
buildPythonPackage rec {
pname = "pyxiaomigateway";
version = "0.13.4";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "PyXiaomiGateway";
rev = version;
sha256 = "1xg89sdds04wgil88ihs84cjr3df6lajjbkyb1aymj638ibdyqns";
};
propagatedBuildInputs = [ cryptography ];
# Tests are not mocking the gateway completely
doCheck = false;
pythonImportsCheck = [ "xiaomi_gateway" ];
meta = with lib; {
description = "Python library to communicate with the Xiaomi Gateway";
homepage = "https://github.com/Danielhiversen/PyXiaomiGateway/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -6636,6 +6636,8 @@ in {
pyxeoma = callPackage ../development/python-modules/pyxeoma { };
pyxiaomigateway = callPackage ../development/python-modules/pyxiaomigateway { };
pyxl3 = callPackage ../development/python-modules/pyxl3 { };
pyxml = disabledIf isPy3k (callPackage ../development/python-modules/pyxml { });