nixpkgs/pkgs/development/python-modules/meross-iot/default.nix

47 lines
871 B
Nix

{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, paho-mqtt
, pytestCheckHook
, pythonOlder
, requests
, retrying
}:
buildPythonPackage rec {
pname = "meross-iot";
version = "0.4.4.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "albertogeniola";
repo = "MerossIot";
rev = "refs/tags/${version}";
sha256 = "sha256-9kRiBYlOX+TcI8+fk+cQ3ehbrV8NnptWa+HN62sKscA=";
};
propagatedBuildInputs = [
aiohttp
paho-mqtt
requests
retrying
];
# Test require network access
doCheck = false;
pythonImportsCheck = [
"meross_iot"
];
meta = with lib; {
description = "Python library to interact with Meross devices";
homepage = "https://github.com/albertogeniola/MerossIot";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}