summary refs log blame commit diff
path: root/pkgs/development/python-modules/apispec/default.nix
blob: 1ed984fc7182e6b7a2328f15a1aff1edcc6712d6 (plain) (tree)
1
2
3
4
5
6
7





                    
                 





                        
                    


                          
                                                                                






                          
        
                   

    






                                                                                                                                            
{ lib
, buildPythonPackage
, fetchPypi
, pyyaml
, prance
, marshmallow
, pytestCheckHook
, mock
, openapi-spec-validator
}:

buildPythonPackage rec {
  pname = "apispec";
  version = "3.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "24b8490c22310b0779a058ccb24ec2fef33d571bb5aba1f525ab5963b0eabcdd";
  };

  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 ];
  };
}