mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
python311Packages.aioruckus: init at 0.34
This commit is contained in:
parent
ee9e52a52e
commit
c1985b815f
67
pkgs/development/python-modules/aioruckus/default.nix
Normal file
67
pkgs/development/python-modules/aioruckus/default.nix
Normal file
@ -0,0 +1,67 @@
|
||||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, wheel
|
||||
, xmltodict
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioruckus";
|
||||
version = "0.34";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ms264556";
|
||||
repo = "aioruckus";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-SPj1w1jAJFBsWj1+N8srAbvlh+yB3ZTT7aDcZTnmUto=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace "setuptools>=68.1" "setuptools"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
xmltodict
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"aioruckus"
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# these require a local ruckus device
|
||||
"test_ap_info"
|
||||
"test_authentication_error"
|
||||
"test_connect_success"
|
||||
"test_current_active_clients"
|
||||
"test_mesh_info"
|
||||
"test_system_info"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python client for Ruckus Unleashed and Ruckus ZoneDirector";
|
||||
homepage = "https://github.com/ms264556/aioruckus";
|
||||
license = licenses.bsd0;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -346,6 +346,8 @@ self: super: with self; {
|
||||
|
||||
aiortm = callPackage ../development/python-modules/aiortm { };
|
||||
|
||||
aioruckus = callPackage ../development/python-modules/aioruckus { };
|
||||
|
||||
aiorun = callPackage ../development/python-modules/aiorun { };
|
||||
|
||||
aioruuvigateway = callPackage ../development/python-modules/aioruuvigateway { };
|
||||
|
Loading…
Reference in New Issue
Block a user