summary refs log blame commit diff
path: root/pkgs/development/python-modules/aiohttp-swagger/default.nix
blob: e01e3ce30bc1c9cd3d189bde2ff7d3a028995460 (plain) (tree)
































                                                                                                      
{ lib
, buildPythonPackage
, fetchFromGitHub
, aiohttp
, flake8
, jinja2
, pytestCheckHook
, pytest-aiohttp
, pyyaml
}:

buildPythonPackage rec {
  pname = "aiohttp-swagger";
  version = "1.0.5";

  src = fetchFromGitHub {
    owner = "cr0hn";
    repo = pname;
    rev = "5a59e86f8c5672d2cc97dd35dc730c2f809d95ce"; # corresponds to 1.0.5 on PyPi, no tag on GitHub
    sha256 = "1vpfk5b3f7s9qzr2q48g776f39xzqppjwm57scfzqqmbldkk5nv7";
  };

  propagatedBuildInputs = [ aiohttp jinja2 pyyaml ];

  checkInputs = [ flake8 pytestCheckHook pytest-aiohttp ];

  meta = with lib; {
    description = "Swagger API Documentation builder for aiohttp";
    homepage = https://github.com/cr0hn/aiohttp-swagger;
    license = licenses.mit;
    maintainers = with maintainers; [ elohmeier ];
  };
}