python3Packages.pyheos: init at 0.7.2

This commit is contained in:
Robert Schütz 2021-06-19 17:32:13 +02:00
parent d2a44b3e87
commit 37c5ca7b57
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyheos";
version = "0.7.2";
src = fetchFromGitHub {
owner = "andrewsayre";
repo = "pyheos";
rev = version;
sha256 = "0rgzg7lnqzzqrjp73c1hj1hq8p0j0msyih3yr4wa2rj81s8ihmby";
};
checkInputs = [
pytest-asyncio
pytestCheckHook
];
disabledTests = [
# accesses network
"test_connect_timeout"
];
pythonImportsCheck = [ "pyheos" ];
meta = with lib; {
description = "Async python library for controlling HEOS devices through the HEOS CLI Protocol";
homepage = "https://github.com/andrewsayre/pyheos";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -5266,6 +5266,8 @@ in {
pyflick = callPackage ../development/python-modules/pyflick { };
pyheos = callPackage ../development/python-modules/pyheos { };
pynndescent = callPackage ../development/python-modules/pynndescent { };
pynobo = callPackage ../development/python-modules/pynobo { };