mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
0215034f25
when they already rely on SRI hashes.
25 lines
553 B
Nix
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 ];
|
|
};
|
|
}
|