python3Packages.ssdp: 1.3.1 -> 1.3.2 (#497934)

This commit is contained in:
Nick Cao
2026-03-10 21:36:30 +00:00
committed by GitHub
@@ -10,16 +10,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "ssdp";
version = "1.3.1";
version = "1.3.2";
pyproject = true;
src = fetchFromGitHub {
owner = "codingjoe";
repo = "ssdp";
tag = version;
hash = "sha256-HsU67vsJvoVyOy2QEq8leYcjl1EVdQ039jN1QyL0XgU=";
tag = finalAttrs.version;
hash = "sha256-1LO5+lfykaepp+MfS/2mlngobhcV1nZvU19Jb0sbVzk=";
};
build-system = [
@@ -45,9 +45,9 @@ buildPythonPackage rec {
meta = {
description = "Python asyncio library for Simple Service Discovery Protocol (SSDP)";
homepage = "https://github.com/codingjoe/ssdp";
changelog = "https://github.com/codingjoe/ssdp/releases/tag/${src.tag}";
changelog = "https://github.com/codingjoe/ssdp/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "ssdp";
};
}
})