12 buildPythonPackage rec {
13 pname = "requests-aws4auth";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
22 rev = "refs/tags/v${version}";
23 hash = "sha256-9ySuX7eKrSwgxgFoMdnVTsIfpnm9kVcI9AqSb+AsVaU=";
26 propagatedBuildInputs = [
31 passthru.optional-dependencies = {
39 ] ++ passthru.optional-dependencies.httpx;
41 pythonImportsCheck = [
46 description = "Amazon Web Services version 4 authentication for the Python Requests library";
47 homepage = "https://github.com/sam-washington/requests-aws4auth";
48 changelog = "https://github.com/tedder/requests-aws4auth/releases/tag/v${version}";
49 license = licenses.mit;
50 maintainers = with maintainers; [ basvandijk ];