Merge pull request #97899 from risicle/ris-httpx-fix
pythonPackages.httpx: fix tests
This commit is contained in:
commit
e452e42d81
@ -1,6 +1,7 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, certifi
|
, certifi
|
||||||
, chardet
|
, chardet
|
||||||
, h11
|
, h11
|
||||||
@ -31,6 +32,14 @@ buildPythonPackage rec {
|
|||||||
sha256 = "08b6k5g8car3bic90aw4ysb2zvsa5nm8qk3hk4dgamllnnxzl5br";
|
sha256 = "08b6k5g8car3bic90aw4ysb2zvsa5nm8qk3hk4dgamllnnxzl5br";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
name = "fix-cookie-test-timestamp.patch";
|
||||||
|
url = "https://github.com/encode/httpx/pull/1270.patch";
|
||||||
|
sha256 = "1hgrynac6226sgnyzmsr1nr15rn49gbfmk4c2kx3dwkbh6vr7jpd";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
certifi
|
certifi
|
||||||
chardet
|
chardet
|
||||||
|
Loading…
Reference in New Issue
Block a user