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

42 lines
815 B
Nix
Raw Normal View History

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