97 lines
1.8 KiB
Nix
97 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
argcomplete,
|
|
black,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
freezegun,
|
|
genson,
|
|
graphql-core,
|
|
hatch-vcs,
|
|
hatchling,
|
|
httpx,
|
|
inflect,
|
|
isort,
|
|
jinja2,
|
|
openapi-spec-validator,
|
|
packaging,
|
|
prance,
|
|
ruff,
|
|
pydantic,
|
|
pytest-benchmark,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
pyyaml,
|
|
toml,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "datamodel-code-generator";
|
|
version = "0.34.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "koxudaxi";
|
|
repo = "datamodel-code-generator";
|
|
tag = version;
|
|
hash = "sha256-fJ7+TtWLJXBaTil0LGsCyu9njDuj1pOVUZYN2huoKao=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"inflect"
|
|
"isort"
|
|
];
|
|
|
|
build-system = [
|
|
hatchling
|
|
hatch-vcs
|
|
];
|
|
|
|
dependencies = [
|
|
argcomplete
|
|
black
|
|
genson
|
|
inflect
|
|
isort
|
|
jinja2
|
|
packaging
|
|
pydantic
|
|
pyyaml
|
|
toml
|
|
];
|
|
|
|
optional-dependencies = {
|
|
graphql = [ graphql-core ];
|
|
http = [ httpx ];
|
|
ruff = [ ruff ];
|
|
validation = [
|
|
openapi-spec-validator
|
|
prance
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
freezegun
|
|
pytest-benchmark
|
|
pytest-mock
|
|
pytestCheckHook
|
|
]
|
|
++ lib.flatten (builtins.attrValues optional-dependencies);
|
|
|
|
pythonImportsCheck = [ "datamodel_code_generator" ];
|
|
|
|
disabledTests = [
|
|
# remote testing, name resolution failure.
|
|
"test_openapi_parser_parse_remote_ref"
|
|
];
|
|
|
|
meta = {
|
|
description = "Pydantic model and dataclasses.dataclass generator for easy conversion of JSON, OpenAPI, JSON Schema, and YAML data sources";
|
|
homepage = "https://github.com/koxudaxi/datamodel-code-generator";
|
|
changelog = "https://github.com/koxudaxi/datamodel-code-generator/releases/tag/${src.tag}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ tochiaha ];
|
|
mainProgram = "datamodel-code-generator";
|
|
};
|
|
}
|