Skip to content

Commit

Permalink
pythonPackages.browsermob-proxy: drop insecure python-cryptography tr…
Browse files Browse the repository at this point in the history
…ansitive dependency; only used for Marionette anyway
  • Loading branch information
7c6f434c committed Nov 27, 2020
1 parent 33b99ef commit ac3f600
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/development/python-modules/browsermob-proxy/default.nix
Expand Up @@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, requests
, urllib3
}:

buildPythonPackage rec {
Expand All @@ -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";
Expand Down

0 comments on commit ac3f600

Please sign in to comment.