python3Packages.httpx: 0.18.0 -> 0.18.2

This commit is contained in:
Fabian Affolter 2021-07-31 19:01:07 +02:00
parent e422c16668
commit fff5923ab5

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, pythonOlder , pythonOlder
, fetchFromGitHub , fetchFromGitHub
, brotli , brotlicffi
, certifi , certifi
, h2 , h2
, httpcore , httpcore
@ -11,25 +11,25 @@
, pytestCheckHook , pytestCheckHook
, pytest-asyncio , pytest-asyncio
, pytest-trio , pytest-trio
, pytest-cov , typing-extensions
, trustme , trustme
, uvicorn , uvicorn
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "httpx"; pname = "httpx";
version = "0.18.0"; version = "0.18.2";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "encode"; owner = "encode";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-6EYBTRXaVHBgW/JzZvWLz55AqgocOyym2FVtu2Nkp/U="; sha256 = "0rr5b6z96yipvp4riqmmbkbcy0sdyzykcdwf5y9ryh27pxr8q8x4";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
brotli brotlicffi
certifi certifi
h2 h2
httpcore httpcore
@ -41,8 +41,8 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
pytest-asyncio pytest-asyncio
pytest-trio pytest-trio
pytest-cov
trustme trustme
typing-extensions
uvicorn uvicorn
]; ];
@ -62,6 +62,6 @@ buildPythonPackage rec {
description = "The next generation HTTP client"; description = "The next generation HTTP client";
homepage = "https://github.com/encode/httpx"; homepage = "https://github.com/encode/httpx";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.costrouc ]; maintainers = with maintainers; [ costrouc fab ];
}; };
} }