python3Packages.httpx: 0.9.5 -> 0.12.1

This commit is contained in:
Jonathan Ringer 2020-04-02 00:23:48 -07:00 committed by Jon
parent 60d5dc598b
commit 9c1222aa01

View file

@ -16,18 +16,19 @@
, uvicorn , uvicorn
, trio , trio
, brotli , brotli
, urllib3
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "httpx"; pname = "httpx";
version = "0.9.5"; version = "0.12.1";
disabled = isPy27; disabled = isPy27;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "encode"; owner = "encode";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "140z2j7b5hlcxvfb433hqv5b8irqa88hpq33lzr9m992djbhj2hb"; sha256 = "1nrp4h1ppb5vll81fzxmks82p0hxcil9f3mja3dgya511kc703h6";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -39,6 +40,7 @@ buildPythonPackage rec {
idna idna
rfc3986 rfc3986
sniffio sniffio
urllib3
]; ];
checkInputs = [ checkInputs = [