2020-04-24 23:36:52 +00:00
|
|
|
{ lib, buildPythonPackage, isPy27, fetchPypi
|
2021-05-03 20:48:10 +00:00
|
|
|
, jsonschema, openapi-schema-validator, pyyaml, six, pathlib
|
2020-04-24 23:36:52 +00:00
|
|
|
, mock, pytest, pytestcov, pytest-flake8, tox, setuptools }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "openapi-spec-validator";
|
2021-04-26 19:14:03 +00:00
|
|
|
version = "0.3.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-04-26 19:14:03 +00:00
|
|
|
sha256 = "53ba3d884e98ff2062d5ada025aa590541dcd665b8f81067dc82dd61c0923759";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-05-03 20:48:10 +00:00
|
|
|
propagatedBuildInputs = [ jsonschema openapi-schema-validator pyyaml six setuptools ]
|
2020-04-24 23:36:52 +00:00
|
|
|
++ (lib.optionals (isPy27) [ pathlib ]);
|
|
|
|
|
|
|
|
checkInputs = [ mock pytest pytestcov pytest-flake8 tox ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/p1c2u/openapi-spec-validator";
|
|
|
|
description = "Validates OpenAPI Specs against the OpenAPI 2.0 (aka Swagger) and OpenAPI 3.0.0 specification";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ rvl ];
|
|
|
|
};
|
|
|
|
}
|