3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/apispec/default.nix

42 lines
828 B
Nix
Raw Normal View History

2019-07-19 00:01:06 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
2019-07-19 00:01:06 +01:00
, pyyaml
, prance
, marshmallow
, pytestCheckHook
2019-07-19 00:01:06 +01:00
, mock
, openapi-spec-validator
}:
buildPythonPackage rec {
pname = "apispec";
version = "4.6.0";
disabled = pythonOlder "3.6";
2019-07-19 00:01:06 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "a896f97394b7d046d46c65262e51e45241dd8d9d71eedebcdb2d7024b775eec4";
2019-07-19 00:01:06 +01:00
};
propagatedBuildInputs = [
2019-07-19 00:01:06 +01:00
pyyaml
prance
];
checkInputs = [
2019-07-19 00:01:06 +01:00
openapi-spec-validator
marshmallow
mock
pytestCheckHook
2019-07-19 00:01:06 +01: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";
2019-07-19 00:01:06 +01:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}