Merge pull request #105141 from 7c6f434c/marionette-fix
pythonPackages.browsermob-proxy: drop insecure python-cryptography tr…
This commit is contained in:
commit
bfa0cc69c7
1 changed files with 5 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, requests
|
||||
, urllib3
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -13,7 +14,10 @@ buildPythonPackage rec {
|
|||
sha256 = "1bxvmghm834gsfz3pm69772wzhh15p8ci526b25dpk3z4315nd7v";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests ];
|
||||
propagatedBuildInputs = [ (requests.override { urllib3 = urllib3.override {
|
||||
pyopenssl = null;
|
||||
cryptography = null;
|
||||
};}) ];
|
||||
|
||||
meta = {
|
||||
description = "A library for interacting with Browsermob Proxy";
|
||||
|
|
Loading…
Reference in a new issue