python311Packages.flasgger: init at 0.9.5

packaged up for httpbin
This commit is contained in:
Martin Weinelt 2023-09-16 02:36:19 +02:00
parent 5d0ae485dc
commit 986a798553
2 changed files with 65 additions and 0 deletions

View file

@ -0,0 +1,63 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
# dependencies
, flask
, jsonschema
, mistune
, pyyaml
, six
, werkzeug
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "flasgger";
version = "0.9.5";
format = "setuptools";
src = fetchFromGitHub {
owner = "flasgger";
repo = "flasgger";
rev = version;
hash = "sha256-cYFMKZxpi69gVWqyZUltCL0ZwcfIABNsJKqAhN2TTSg=";
};
patches = [
(fetchpatch {
# flask 2.3 compat
url = "https://github.com/flasgger/flasgger/commit/ab77be7c6de1d4b361f0eacfa37290239963f890.patch";
hash = "sha256-ZbE5pPUP23nZAP/qcdeWkwzrZgqJSRES7oFta8U1uVQ=";
})
];
propagatedBuildInputs = [
flask
jsonschema
mistune
pyyaml
six
werkzeug
];
pythonImportsCheck = [
"flasgger"
];
nativeCheckInputs = [
pytestCheckHook
];
doCheck = false; # missing flex dependency
meta = with lib; {
description = "Easy OpenAPI specs and Swagger UI for your Flask API";
homepage = "https://github.com/flasgger/flasgger/";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}

View file

@ -3887,6 +3887,8 @@ self: super: with self; {
flammkuchen = callPackage ../development/python-modules/flammkuchen { };
flasgger = callPackage ../development/python-modules/flasgger { };
flashtext = callPackage ../development/python-modules/flashtext { };
flask-admin = callPackage ../development/python-modules/flask-admin { };