mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-29 03:34:42 +00:00
30 lines
605 B
Nix
30 lines
605 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
flask,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-swagger-ui";
|
|
version = "5.32.14";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "flask_swagger_ui";
|
|
inherit version;
|
|
hash = "sha256-p3lUxjMu7Q+SaCt71+90n2MSf3NlqEqaimh+JvzEOg4=";
|
|
};
|
|
|
|
doCheck = false; # there are no tests
|
|
|
|
propagatedBuildInputs = [ flask ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/sveint/flask-swagger-ui";
|
|
license = lib.licenses.mit;
|
|
description = "Swagger UI blueprint for Flask";
|
|
maintainers = with lib.maintainers; [ vanschelven ];
|
|
};
|
|
}
|