16 buildPythonPackage rec {
17 pname = "apispec-webframeworks";
21 disabled = pythonOlder "3.8";
23 src = fetchFromGitHub {
24 owner = "marshmallow-code";
25 repo = "apispec-webframeworks";
26 rev = "refs/tags/${version}";
27 hash = "sha256-V4tdqcHfYRh9VoXUTPXM3SIOogJDJB14SLj5dSd7LzU=";
30 build-system = [ flit-core ];
32 dependencies = [ apispec ] ++ apispec.optional-dependencies.yaml;
43 pythonImportsCheck = [ "apispec_webframeworks" ];
46 description = "Web framework plugins for apispec";
47 homepage = "https://github.com/marshmallow-code/apispec-webframeworks";
48 changelog = "https://github.com/marshmallow-code/apispec-webframeworks/blob/${version}/CHANGELOG.rst";
49 license = licenses.mit;
50 maintainers = with maintainers; [ fab ];