1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
aioresponses,
|
|
buildPythonPackage,
|
|
cryptography,
|
|
fetchFromGitHub,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
xmltodict,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aioruckus";
|
|
version = "0.42";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ms264556";
|
|
repo = "aioruckus";
|
|
tag = "v${version}";
|
|
hash = "sha256-UfyB3qGEDOQ39YA1AueCBXeoJhGH+XDCLZSFA+kpT2k=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
cryptography
|
|
xmltodict
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
aioresponses
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "aioruckus" ];
|
|
|
|
disabledTests = [
|
|
# Those tests require a local ruckus device
|
|
"test_ap_info"
|
|
"test_authentication_error"
|
|
"test_connect_success"
|
|
"test_current_active_clients"
|
|
"test_mesh_info"
|
|
"test_system_info"
|
|
# Network access to Ruckus Cloud API
|
|
"test_r1_connect_no_webserver_error"
|
|
];
|
|
|
|
meta = {
|
|
description = "Python client for Ruckus Unleashed and Ruckus ZoneDirector";
|
|
homepage = "https://github.com/ms264556/aioruckus";
|
|
license = lib.licenses.bsd0;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|