Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / aioaladdinconnect / default.nix
blob5617eec6b534d722ea2c00c8fa892661e76e866e
1 { lib
2 , aioboto3
3 , aiohttp
4 , buildPythonPackage
5 , fetchPypi
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "aioaladdinconnect";
11   version = "0.2.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     pname = "AIOAladdinConnect";
18     inherit version;
19     hash = "sha256-5vfw8SU3lWlPoMAR+byf8jpZrGmXTPoeO+DvPByjZnw=";
20   };
22   propagatedBuildInputs = [
23     aioboto3
24     aiohttp
25   ];
27   # Module has no tests
28   doCheck = false;
30   pythonImportsCheck = [
31     "AIOAladdinConnect"
32   ];
34   meta = with lib; {
35     description = "Library for controlling Genie garage doors connected to Aladdin Connect devices";
36     homepage = "https://github.com/mkmer/AIOAladdinConnect";
37     changelog = "https://github.com/mkmer/AIOAladdinConnect/releases/tag/${version}";
38     license = with licenses; [ mit ];
39     maintainers = with maintainers; [ fab ];
40   };