evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / aiohttp-basicauth / default.nix
blobeede039d4854fa210cf4ecf789e67225ea6aa157
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   aiohttp,
6   pytestCheckHook,
7   pytest-asyncio,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "aiohttp-basicauth";
13   version = "1.1.0";
14   format = "setuptools";
16   disabled = pythonOlder "3.6";
18   src = fetchFromGitHub {
19     owner = "romis2012";
20     repo = "aiohttp-basicauth";
21     rev = "refs/tags/v${version}";
22     hash = "sha256-DjwrMlkVVceA5kDzm0c/on0VMOxyMMA3Hu4Y2Tiu0lI=";
23   };
25   propagatedBuildInputs = [ aiohttp ];
27   nativeCheckInputs = [
28     pytestCheckHook
29     pytest-asyncio
30   ];
32   pythonImportsCheck = [ "aiohttp_basicauth" ];
34   meta = with lib; {
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 ];
39   };