mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
Merge pull request #329055 from r-ryantm/auto-update/python312Packages.requests-aws4auth
python312Packages.requests-aws4auth: 1.2.3 -> 1.3.1
This commit is contained in:
commit
44b67127d0
@ -6,33 +6,32 @@
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
requests,
|
||||
six,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "requests-aws4auth";
|
||||
version = "1.2.3";
|
||||
format = "setuptools";
|
||||
version = "1.3.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tedder";
|
||||
repo = pname;
|
||||
repo = "requests-aws4auth";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-9ySuX7eKrSwgxgFoMdnVTsIfpnm9kVcI9AqSb+AsVaU=";
|
||||
hash = "sha256-tRo38fdWqZmutGhWv8Hks+oFaLv770RlAHYgS3S6xJA=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
six
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
dependencies = [ requests ];
|
||||
|
||||
optional-dependencies = {
|
||||
httpx = [ httpx ];
|
||||
};
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ] ++ passthru.optional-dependencies.httpx;
|
||||
nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.httpx;
|
||||
|
||||
pythonImportsCheck = [ "requests_aws4auth" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user