summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/httpx
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-31 19:01:07 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-31 19:01:07 +0200
commitfff5923ab5b054a7481772829a6e5e1812571ee7 (patch)
tree39cad4b29bd7bef977771b9cd735cccdc0ebf32d /pkgs/development/python-modules/httpx
parentMerge pull request #132228 from Ma27/bump-diffoscope (diff)
downloadnixpkgs-fff5923ab5b054a7481772829a6e5e1812571ee7.tar.gz
python3Packages.httpx: 0.18.0 -> 0.18.2
Diffstat (limited to 'pkgs/development/python-modules/httpx')
-rw-r--r--pkgs/development/python-modules/httpx/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/httpx/default.nix b/pkgs/development/python-modules/httpx/default.nix
index e5db065defcd..6a9300566d59 100644
--- a/pkgs/development/python-modules/httpx/default.nix
+++ b/pkgs/development/python-modules/httpx/default.nix
@@ -2,7 +2,7 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
-, brotli
+, brotlicffi
, certifi
, h2
, httpcore
@@ -11,25 +11,25 @@
, pytestCheckHook
, pytest-asyncio
, pytest-trio
-, pytest-cov
+, typing-extensions
, trustme
, uvicorn
}:
buildPythonPackage rec {
pname = "httpx";
- version = "0.18.0";
+ version = "0.18.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "encode";
repo = pname;
rev = version;
- sha256 = "sha256-6EYBTRXaVHBgW/JzZvWLz55AqgocOyym2FVtu2Nkp/U=";
+ sha256 = "0rr5b6z96yipvp4riqmmbkbcy0sdyzykcdwf5y9ryh27pxr8q8x4";
};
propagatedBuildInputs = [
- brotli
+ brotlicffi
certifi
h2
httpcore
@@ -41,8 +41,8 @@ buildPythonPackage rec {
pytestCheckHook
pytest-asyncio
pytest-trio
- pytest-cov
trustme
+ typing-extensions
uvicorn
];
@@ -62,6 +62,6 @@ buildPythonPackage rec {
description = "The next generation HTTP client";
homepage = "https://github.com/encode/httpx";
license = licenses.bsd3;
- maintainers = [ maintainers.costrouc ];
+ maintainers = with maintainers; [ costrouc fab ];
};
}