10 buildPythonPackage rec {
11 pname = "aiohttp-basicauth";
13 format = "setuptools";
15 disabled = pythonOlder "3.6";
17 src = fetchFromGitHub {
19 repo = "aiohttp-basicauth";
21 hash = "sha256-UaRzauHmBHYwXFqRwDn1py79BScqq5j5SWALM4dQBP4=";
24 propagatedBuildInputs = [
33 pythonImportsCheck = [ "aiohttp_basicauth" ];
36 description = "HTTP basic authentication middleware for aiohttp 3.0";
37 homepage = "https://github.com/romis2012/aiohttp-basicauth";
38 license = licenses.asl20;
39 maintainers = with maintainers; [ mbalatsko ];