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