My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/meross-iot/default.nix

46 lines
856 B

{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, paho-mqtt
, pytestCheckHook
, pythonOlder
, requests
, retrying
}:
buildPythonPackage rec {
pname = "meross-iot";
version = "0.4.4.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "albertogeniola";
repo = "MerossIot";
rev = version;
sha256 = "sha256-bazAhCsxr8UNV51UnaGbP7kTC6mcDNM7N78f0jy26ew=";
};
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 ];
};
}