python3Packages.unifi-discovery: 1.3.0 -> 1.4.0 (#509492)

This commit is contained in:
Fabian Affolter
2026-04-13 10:07:48 +00:00
committed by GitHub
@@ -11,16 +11,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "unifi-discovery";
version = "1.3.0";
version = "1.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "bdraco";
repo = "unifi-discovery";
tag = "v${version}";
hash = "sha256-/SsgBiCEfMYi3DccYKBZGoYX4egGW+bBIA/D73FaneE=";
tag = "v${finalAttrs.version}";
hash = "sha256-pn8WRsYGbBy4EwQ1DufY2WbbVM65dM4h8ZReG+qkr6k=";
};
build-system = [ poetry-core ];
@@ -44,9 +44,9 @@ buildPythonPackage rec {
meta = {
description = "Module to discover Unifi devices";
homepage = "https://github.com/bdraco/unifi-discovery";
changelog = "https://github.com/bdraco/unifi-discovery/releases/tag/v${version}";
license = with lib.licenses; [ asl20 ];
changelog = "https://github.com/bdraco/unifi-discovery/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
platforms = lib.platforms.linux;
};
}
})