python39Packages.httpx: 0.18.2 -> 0.19.0
This commit is contained in:
parent
ef5d117e45
commit
5c5556f5bc
1 changed files with 4 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, brotlicffi
|
, brotlicffi
|
||||||
, certifi
|
, certifi
|
||||||
|
, charset-normalizer
|
||||||
, h2
|
, h2
|
||||||
, httpcore
|
, httpcore
|
||||||
, rfc3986
|
, rfc3986
|
||||||
|
@ -18,19 +19,20 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "httpx";
|
pname = "httpx";
|
||||||
version = "0.18.2";
|
version = "0.19.0";
|
||||||
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 = "0rr5b6z96yipvp4riqmmbkbcy0sdyzykcdwf5y9ryh27pxr8q8x4";
|
sha256 = "sha256-bUxxeUYqOHBmSL2gPQG5cIq6k5QY4Kyhj9ToA5yZXPA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
brotlicffi
|
brotlicffi
|
||||||
certifi
|
certifi
|
||||||
|
charset-normalizer
|
||||||
h2
|
h2
|
||||||
httpcore
|
httpcore
|
||||||
rfc3986
|
rfc3986
|
||||||
|
|
Loading…
Reference in a new issue