mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
29 lines
615 B
Nix
29 lines
615 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, flask, pyyaml }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.2.14";
|
|
format = "setuptools";
|
|
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 ];
|
|
};
|
|
}
|