{ lib , buildPythonPackage , fetchPypi , pyyaml , prance , marshmallow , pytestCheckHook , mock , openapi-spec-validator }: buildPythonPackage rec { pname = "apispec"; version = "3.3.0"; src = fetchPypi { inherit pname version; sha256 = "419d0564b899e182c2af50483ea074db8cb05fee60838be58bb4542095d5c08d"; }; checkInputs = [ pyyaml prance openapi-spec-validator marshmallow mock pytestCheckHook ]; meta = with lib; { description = "A pluggable API specification generator. Currently supports the OpenAPI Specification (f.k.a. the Swagger specification"; homepage = "https://github.com/marshmallow-code/apispec"; license = licenses.mit; maintainers = [ maintainers.costrouc ]; }; }