1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
chardet,
click,
flex,
packaging,
pyicu,
requests,
ruamel-yaml,
setuptools-scm,
six,
swagger-spec-validator,
pytest-cov-stub,
pytestCheckHook,
openapi-spec-validator,
}:
buildPythonPackage rec {
pname = "prance";
version = "23.06.21.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "RonnyPfannschmidt";
repo = "prance";
rev = "refs/tags/v${version}";
fetchSubmodules = true;
hash = "sha256-p+LZbQal4DPeMp+eJ2O83rCaL+QIUDcU34pZhYdN4bE=";
};
build-system = [ setuptools-scm ];
dependencies = [
chardet
packaging
requests
ruamel-yaml
six
];
passthru.optional-dependencies = {
cli = [ click ];
flex = [ flex ];
icu = [ pyicu ];
osv = [ openapi-spec-validator ];
ssv = [ swagger-spec-validator ];
};
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);
# Disable tests that require network
disabledTestPaths = [ "tests/test_convert.py" ];
disabledTests = [
"test_convert_defaults"
"test_convert_output"
"test_fetch_url_http"
"test_openapi_spec_validator_validate_failure"
];
pythonImportsCheck = [ "prance" ];
meta = with lib; {
description = "Resolving Swagger/OpenAPI 2.0 and 3.0.0 Parser";
homepage = "https://github.com/RonnyPfannschmidt/prance";
changelog = "https://github.com/RonnyPfannschmidt/prance/blob/${src.rev}/CHANGES.rst";
license = licenses.mit;
maintainers = [ ];
mainProgram = "prance";
};
}
|