pythonPackages.browsermob-proxy: drop insecure python-cryptography transitive dependency; only used for Marionette anyway
This commit is contained in:
parent
33b99efb96
commit
ac3f60095b
@ -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 New Issue
Block a user