python3Packages.voluptuous-openapi: 0.3.0 -> 0.4.1

https://github.com/home-assistant-libs/voluptuous-openapi/releases/tag/0.4.1
This commit is contained in:
Martin Weinelt
2026-07-07 00:43:54 +02:00
parent 7e34a5e7d3
commit 65ca04c9f1
@@ -14,16 +14,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "voluptuous-openapi";
version = "0.3.0";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "voluptuous-openapi";
tag = version;
hash = "sha256-e94D87plGOcdXFLmZ4MhOt5xWbcoqyo3FgYbbXV8nNU=";
tag = finalAttrs.version;
hash = "sha256-eT0Ej0mylMh/GNUZsr/YPziPad5id2bs2rMtX65BsZA=";
};
build-system = [ setuptools ];
@@ -38,10 +38,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "voluptuous_openapi" ];
meta = {
changelog = "https://github.com/home-assistant-libs/voluptuous-openapi/releases/tag/${src.tag}";
changelog = "https://github.com/home-assistant-libs/voluptuous-openapi/releases/tag/${finalAttrs.src.tag}";
description = "Convert voluptuous schemas to OpenAPI Schema object";
homepage = "https://github.com/home-assistant-libs/voluptuous-openapi";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hexa ];
};
}
})