python310Packages.requests-aws4auth: fix typo

This commit is contained in:
Fabian Affolter 2023-01-25 09:35:22 +01:00 committed by GitHub
parent 0f29dab46a
commit 8aa14c8a8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,9 @@ buildPythonPackage rec {
];
passthru.optional-dependencies = {
httpx = [ httpx ];
httpx = [
httpx
];
};
nativeCheckInputs = [
@ -43,7 +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";
chnagelog = "https://github.com/tedder/requests-aws4auth/releases/tag/v${version}";
changelog = "https://github.com/tedder/requests-aws4auth/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ basvandijk ];
};