9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
50 lines
1 KiB
Nix
50 lines
1 KiB
Nix
{ lib
|
|
, apispec
|
|
, bottle
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, flask
|
|
, mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, tornado
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "apispec-webframeworks";
|
|
version = "0.5.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "marshmallow-code";
|
|
repo = "apispec-webframeworks";
|
|
rev = version;
|
|
hash = "sha256-ByNmmBLO99njw9JrT+cCW/K4NJBH92smAiIgg47Cvkk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
apispec
|
|
] ++ apispec.optional-dependencies.yaml;
|
|
|
|
nativeCheckInputs = [
|
|
bottle
|
|
flask
|
|
mock
|
|
pytestCheckHook
|
|
tornado
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"apispec_webframeworks"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Web framework plugins for apispec";
|
|
homepage = "https://github.com/marshmallow-code/apispec-webframeworks";
|
|
changelog = "https://github.com/marshmallow-code/apispec-webframeworks/blob/${version}/CHANGELOG.rst";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|