c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
click,
|
|
essentials,
|
|
flask,
|
|
hatchling,
|
|
httpx,
|
|
jinja2,
|
|
markupsafe,
|
|
pydantic,
|
|
pytestCheckHook,
|
|
pythonImportsCheckHook,
|
|
pyyaml,
|
|
rich,
|
|
setuptools
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "essentials-openapi";
|
|
version = "1.0.9";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Neoteroi";
|
|
repo = "essentials-openapi";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-/NYv0NrE8+0kQg5G3Qf2DtesMHlmKQYczNT8pFlNFZE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
flask
|
|
httpx
|
|
pydantic
|
|
pytestCheckHook
|
|
rich
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pyyaml
|
|
essentials
|
|
markupsafe
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
full = [ click jinja2 rich httpx ];
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"openapidocs"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Neoteroi/essentials-openapi";
|
|
description = "Functions to handle OpenAPI Documentation";
|
|
changelog = "https://github.com/Neoteroi/essentials-openapi/releases/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [aldoborrero zimbatm];
|
|
};
|
|
}
|