Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi, flask }:
2
3buildPythonPackage rec {
4 pname = "flask-swagger-ui";
5 version = "3.25.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "42d098997e06b04f992609c4945cc990738b269c153d8388fc59a91a5dfcee9e";
10 };
11
12 doCheck = false; # there are no tests
13
14 propagatedBuildInputs = [
15 flask
16 ];
17
18 meta = with stdenv.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 };
24}