pythonPackages.browsermob-proxy: drop insecure python-cryptography transitive dependency; only used for Marionette anyway

This commit is contained in:
Michael Raskin 2020-11-27 14:26:57 +01:00
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";