nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, buildPythonPackage, fetchPypi, flask }:
2
3buildPythonPackage rec {
4 pname = "flask-swagger-ui";
5 version = "3.20.9";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "3282c770764c8053360f33b2fc120e1d169ecca2138537d0e6e1135b1f9d4ff2";
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}