about summary refs log tree commit diff
path: root/pkgs/development/python-modules/browsermob-proxy
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2017-05-21 19:28:30 +0200
committerMichael Raskin <7c6f434c@mail.ru>2017-05-21 19:29:20 +0200
commitdaa65527c6be5e04467511145bbac4a8baa26595 (patch)
treeadccec5cabe7cf53449439512fe376a77ac8066f /pkgs/development/python-modules/browsermob-proxy
parentc1894bef7a0ccddac2bc6443d34733a25f60e353 (diff)
downloadnixlib-daa65527c6be5e04467511145bbac4a8baa26595.tar
nixlib-daa65527c6be5e04467511145bbac4a8baa26595.tar.gz
nixlib-daa65527c6be5e04467511145bbac4a8baa26595.tar.bz2
nixlib-daa65527c6be5e04467511145bbac4a8baa26595.tar.lz
nixlib-daa65527c6be5e04467511145bbac4a8baa26595.tar.xz
nixlib-daa65527c6be5e04467511145bbac4a8baa26595.tar.zst
nixlib-daa65527c6be5e04467511145bbac4a8baa26595.zip
marionette-harness: init at 4.4.0
Diffstat (limited to 'pkgs/development/python-modules/browsermob-proxy')
-rw-r--r--pkgs/development/python-modules/browsermob-proxy/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/browsermob-proxy/default.nix b/pkgs/development/python-modules/browsermob-proxy/default.nix
new file mode 100644
index 000000000000..67dd0c8c9d73
--- /dev/null
+++ b/pkgs/development/python-modules/browsermob-proxy/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, stdenv
+, buildPythonPackage
+, fetchPypi
+, requests
+}:
+
+buildPythonPackage rec {
+  pname = "browsermob-proxy";
+  version = "0.8.0";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1bxvmghm834gsfz3pm69772wzhh15p8ci526b25dpk3z4315nd7v";
+  };
+
+  propagatedBuildInputs = [ requests ];
+
+  meta = {
+    description = "A library for interacting with Browsermob Proxy";
+    homepage = "http://oss.theautomatedtester.co.uk/browsermob-proxy-py";
+    license = lib.licenses.asl20;
+    maintainers = with lib.maintainers; [ raskin ];
+  };
+}