nixpkgs/pkgs/development/python-modules/flask-swagger-ui/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

25 lines
553 B
Nix

{ lib, buildPythonPackage, fetchPypi, flask }:
buildPythonPackage rec {
pname = "flask-swagger-ui";
version = "4.11.1";
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 ];
};
}