depot/third_party/nixpkgs/pkgs/development/python-modules/flask-swagger-ui/default.nix

29 lines
580 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
flask,
}:
buildPythonPackage rec {
pname = "flask-swagger-ui";
version = "4.11.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-o3AZmngNZ4sy448b4Q1Nge+g7mPp/i+3Zv8aS2w32sg=";
};
doCheck = false; # there are no tests
propagatedBuildInputs = [ flask ];
meta = with lib; {
homepage = "https://github.com/sveint/flask-swagger-ui";
license = licenses.mit;
description = "Swagger UI blueprint for Flask";
maintainers = with maintainers; [ vanschelven ];
};
}