nixpkgs/pkgs/development/python-modules/apispec/default.nix

37 lines
746 B
Nix
Raw Normal View History

2019-07-19 01:01:06 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pyyaml
, prance
, marshmallow
, pytestCheckHook
2019-07-19 01:01:06 +02:00
, mock
, openapi-spec-validator
}:
buildPythonPackage rec {
pname = "apispec";
2019-12-19 20:31:04 +01:00
version = "3.1.1";
2019-07-19 01:01:06 +02:00
src = fetchPypi {
inherit pname version;
2019-12-19 20:31:04 +01:00
sha256 = "24b8490c22310b0779a058ccb24ec2fef33d571bb5aba1f525ab5963b0eabcdd";
2019-07-19 01:01:06 +02:00
};
checkInputs = [
pyyaml
prance
openapi-spec-validator
marshmallow
mock
pytestCheckHook
2019-07-19 01:01:06 +02:00
];
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 ];
};
}