python3Packages.voluptuous-openapi: 0.0.5 -> 0.0.6

https://github.com/home-assistant-libs/voluptuous-openapi/releases/tag/v0.0.6
This commit is contained in:
Martin Weinelt
2025-01-27 10:57:51 +01:00
parent b000053c09
commit afe47ffd0f
@@ -10,31 +10,35 @@
voluptuous,
# tests
openapi-schema-validator,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "voluptuous-openapi";
version = "0.0.5";
version = "0.0.6";
pyproject = true;
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "voluptuous-openapi";
rev = "v${version}";
hash = "sha256-QZi2uxFrYMSJVKIHTRBlGAM1sCD6oIzsZNQH7zkXL8w=";
tag = "v${version}";
hash = "sha256-D8TafOOGiZO2IpSE7aGB1CVey2zpZgGzZpUvagT9B6Q=";
};
build-system = [ setuptools ];
dependencies = [ voluptuous ];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
openapi-schema-validator
pytestCheckHook
];
pythonImportsCheck = [ "voluptuous_openapi" ];
meta = with lib; {
changelog = "https://github.com/home-assistant-libs/voluptuous-openapi/releases/tag/${src.rev}";
changelog = "https://github.com/home-assistant-libs/voluptuous-openapi/releases/tag/${src.tag}";
description = "Convert voluptuous schemas to OpenAPI Schema object";
homepage = "https://github.com/home-assistant-libs/voluptuous-openapi";
license = licenses.asl20;