pythonPackages.micloud: init at 0.3

This commit is contained in:
Robert Schütz 2021-07-02 11:25:57 +02:00
parent cab809f466
commit 4d957e8613
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, click
, requests
, tzlocal
}:
buildPythonPackage rec {
pname = "micloud";
version = "0.3";
src = fetchFromGitHub {
owner = "Squachen";
repo = "micloud";
rev = "v_${version}";
sha256 = "0267zyr79nfb5f9rwdwq3ym258yrpxx1b71xiqmszyz5s83mcixm";
};
propagatedBuildInputs = [
click
requests
tzlocal
];
# tests require credentials
doCheck = false;
pythonImportsCheck = [ "micloud" ];
meta = with lib; {
description = "Xiaomi cloud connect library";
homepage = "https://github.com/Squachen/micloud";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -5235,6 +5235,8 @@ in {
phonenumbers = callPackage ../development/python-modules/phonenumbers { };
micloud = callPackage ../development/python-modules/micloud { };
netmap = callPackage ../development/python-modules/netmap { };
openapi-core = callPackage ../development/python-modules/openapi-core { };