1{ lib
2, buildPythonPackage
3, fetchPypi
4, requests
5, urllib3
6}:
7
8buildPythonPackage rec {
9 pname = "browsermob-proxy";
10 version = "0.8.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "1bxvmghm834gsfz3pm69772wzhh15p8ci526b25dpk3z4315nd7v";
15 };
16
17 propagatedBuildInputs = [ (requests.override { urllib3 = urllib3.override {
18 pyopenssl = null;
19 cryptography = null;
20 };}) ];
21
22 meta = {
23 description = "A library for interacting with Browsermob Proxy";
24 homepage = "http://oss.theautomatedtester.co.uk/browsermob-proxy-py";
25 license = lib.licenses.asl20;
26 maintainers = with lib.maintainers; [ raskin ];
27 };
28}