My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/flask-swagger/default.nix

27 lines
590 B

{ lib, buildPythonPackage, fetchPypi
, flask, pyyaml }:
buildPythonPackage rec {
version = "0.2.14";
pname = "flask-swagger";
src = fetchPypi {
inherit pname version;
sha256 = "b4085f5bc36df4c20b6548cd1413adc9cf35719b0f0695367cd542065145294d";
};
# No Tests
doCheck = false;
propagatedBuildInputs = [
flask
pyyaml
];
meta = with lib; {
homepage = "https://github.com/gangverk/flask-swagger";
license = licenses.mit;
description = "Extract swagger specs from your flask project";
maintainers = with maintainers; [ vanschelven ];
};
}