Merge pull request #212508 from r-ryantm/auto-update/python310Packages.requests-aws4auth

python310Packages.requests-aws4auth: 1.1.2 -> 1.2.0
This commit is contained in:
Fabian Affolter
2023-01-25 10:32:44 +01:00
committed by GitHub
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "requests-aws4auth";
version = "1.1.2";
version = "1.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -19,8 +19,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "tedder";
repo = pname;
rev = "v${version}";
hash = "sha256-/SqU/ojP9I4JXzR0c5tLzxx9UyNaVsON7LG/dbdeiH0=";
rev = "refs/tags/v${version}";
hash = "sha256-a3OY0Z5GGr3gYa5m4V6ukqQmjZuqtgZjmLGJxmFOPqU=";
};
propagatedBuildInputs = [
@@ -29,7 +29,9 @@ buildPythonPackage rec {
];
passthru.optional-dependencies = {
httpx = [ httpx ];
httpx = [
httpx
];
};
nativeCheckInputs = [
@@ -43,6 +45,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Amazon Web Services version 4 authentication for the Python Requests library";
homepage = "https://github.com/sam-washington/requests-aws4auth";
changelog = "https://github.com/tedder/requests-aws4auth/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ basvandijk ];
};