Merge pull request #105141 from 7c6f434c/marionette-fix

pythonPackages.browsermob-proxy: drop insecure python-cryptography tr…
This commit is contained in:
Michael Raskin 2020-11-27 13:41:56 +00:00 committed by GitHub
commit bfa0cc69c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";