mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
python3Packages.pyheos: init at 0.7.2
This commit is contained in:
parent
d2a44b3e87
commit
37c5ca7b57
37
pkgs/development/python-modules/pyheos/default.nix
Normal file
37
pkgs/development/python-modules/pyheos/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user