2019-07-18 23:01:06 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, marshmallow
|
|
|
|
, mock
|
|
|
|
, openapi-spec-validator
|
2023-02-20 09:34:17 +00:00
|
|
|
, packaging
|
2022-04-30 13:51:42 +00:00
|
|
|
, prance
|
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
|
|
|
, pyyaml
|
2019-07-18 23:01:06 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "apispec";
|
2023-03-15 16:37:06 +00:00
|
|
|
version = "6.3.0";
|
2022-04-30 13:51:42 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2019-07-18 23:01:06 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-15 16:37:06 +00:00
|
|
|
hash = "sha256-bLCNks5z/ws79Gyy6lwA1XKJsPJ5+wJWo99GgYK6U0Q=";
|
2019-07-18 23:01:06 +00:00
|
|
|
};
|
|
|
|
|
2021-05-14 19:42:27 +00:00
|
|
|
propagatedBuildInputs = [
|
2023-02-20 09:34:17 +00:00
|
|
|
packaging
|
2021-05-14 19:42:27 +00:00
|
|
|
];
|
|
|
|
|
2023-02-20 09:34:17 +00:00
|
|
|
passthru.optional-dependencies = {
|
|
|
|
marshmallow = [
|
|
|
|
marshmallow
|
|
|
|
];
|
|
|
|
yaml = [
|
|
|
|
pyyaml
|
|
|
|
];
|
|
|
|
validation = [
|
|
|
|
openapi-spec-validator
|
|
|
|
prance
|
2023-03-08 00:17:18 +00:00
|
|
|
] ++ prance.optional-dependencies.osv;
|
2023-02-20 09:34:17 +00:00
|
|
|
};
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2019-07-18 23:01:06 +00:00
|
|
|
mock
|
2019-11-15 21:14:25 +00:00
|
|
|
pytestCheckHook
|
2023-02-20 09:34:17 +00:00
|
|
|
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
|
2019-07-18 23:01:06 +00:00
|
|
|
|
2022-04-30 13:51:42 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"apispec"
|
|
|
|
];
|
2021-07-02 07:20:30 +00:00
|
|
|
|
2019-07-18 23:01:06 +00:00
|
|
|
meta = with lib; {
|
2023-01-22 00:25:16 +00:00
|
|
|
changelog = "https://github.com/marshmallow-code/apispec/blob/${version}/CHANGELOG.rst";
|
2021-07-02 07:20:30 +00:00
|
|
|
description = "A pluggable API specification generator with support for the OpenAPI Specification";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/marshmallow-code/apispec";
|
2019-07-18 23:01:06 +00:00
|
|
|
license = licenses.mit;
|
2023-06-30 15:53:25 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2019-07-18 23:01:06 +00:00
|
|
|
};
|
|
|
|
}
|