linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / flask-swagger-ui / default.nix
blobd238ba5acb752500698824351c02e40867723fa3
1 { lib, buildPythonPackage, fetchPypi, flask }:
3 buildPythonPackage rec {
4   pname = "flask-swagger-ui";
5   version = "3.36.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "f329752a65b2940ada8eeb57bce613f7c0a12856a9c31063bb9e33798554c9ed";
10   };
12   doCheck = false;  # there are no tests
14   propagatedBuildInputs = [
15     flask
16   ];
18   meta = with lib; {
19     homepage = "https://github.com/sveint/flask-swagger-ui";
20     license = licenses.mit;
21     description = "Swagger UI blueprint for Flask";
22     maintainers = with maintainers; [ vanschelven ];
23   };