11 buildPythonPackage rec {
12 pname = "aiohttp-basicauth";
14 format = "setuptools";
16 disabled = pythonOlder "3.6";
18 src = fetchFromGitHub {
20 repo = "aiohttp-basicauth";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-DjwrMlkVVceA5kDzm0c/on0VMOxyMMA3Hu4Y2Tiu0lI=";
25 propagatedBuildInputs = [ aiohttp ];
32 pythonImportsCheck = [ "aiohttp_basicauth" ];
35 description = "HTTP basic authentication middleware for aiohttp 3.0";
36 homepage = "https://github.com/romis2012/aiohttp-basicauth";
37 license = licenses.asl20;
38 maintainers = with maintainers; [ mbalatsko ];