python3Packages.aioqsw: 0.4.1 -> 0.4.2 (#473696)

This commit is contained in:
Fabian Affolter
2025-12-24 20:04:41 +00:00
committed by GitHub
@@ -3,31 +3,24 @@
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "aioqsw";
version = "0.4.1";
format = "pyproject";
disabled = pythonOlder "3.11";
version = "0.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "Noltari";
repo = "aioqsw";
tag = version;
hash = "sha256-h/rTwMF3lc/hWwpzCvK6UMq0rjq3xkw/tEY3BqOPS2s=";
hash = "sha256-SIdEM5YxPnCM6wEJTL19t07Xb89wDAwHzKnz0dKC0tw=";
};
nativeBuildInputs = [
setuptools
wheel
];
build-system = [ setuptools ];
propagatedBuildInputs = [ aiohttp ];
dependencies = [ aiohttp ];
# Module has no tests
doCheck = false;
@@ -37,8 +30,8 @@ buildPythonPackage rec {
meta = {
description = "Library to fetch data from QNAP QSW switches";
homepage = "https://github.com/Noltari/aioqsw";
changelog = "https://github.com/Noltari/aioqsw/releases/tag/${version}";
license = with lib.licenses; [ asl20 ];
changelog = "https://github.com/Noltari/aioqsw/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}