12 buildPythonPackage rec {
13 pname = "requests-aws4auth";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "requests-aws4auth";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-tRo38fdWqZmutGhWv8Hks+oFaLv770RlAHYgS3S6xJA=";
26 build-system = [ setuptools ];
28 dependencies = [ requests ];
30 optional-dependencies = {
34 nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.httpx;
36 pythonImportsCheck = [ "requests_aws4auth" ];
39 description = "Amazon Web Services version 4 authentication for the Python Requests library";
40 homepage = "https://github.com/sam-washington/requests-aws4auth";
41 changelog = "https://github.com/tedder/requests-aws4auth/releases/tag/v${version}";
42 license = licenses.mit;
43 maintainers = with maintainers; [ basvandijk ];