summary refs log tree commit diff
path: root/pkgs/development/python-modules/capturer
diff options
context:
space:
mode:
authoreyjhbb@gmail.com <eyjhbb@gmail.com>2019-07-23 16:59:48 +0200
committereyjhbb@gmail.com <eyjhbb@gmail.com>2019-07-24 21:49:25 +0200
commit3d91e7fde081da2a6902e0d959baeb0345136945 (patch)
tree2f234a93e80812a756d150aa5cc9e9d79dd159f8 /pkgs/development/python-modules/capturer
parent1de0c3275a960f3e85bc796749d471e98ceef837 (diff)
downloadnixpkgs-3d91e7fde081da2a6902e0d959baeb0345136945.tar
nixpkgs-3d91e7fde081da2a6902e0d959baeb0345136945.tar.gz
nixpkgs-3d91e7fde081da2a6902e0d959baeb0345136945.tar.bz2
nixpkgs-3d91e7fde081da2a6902e0d959baeb0345136945.tar.lz
nixpkgs-3d91e7fde081da2a6902e0d959baeb0345136945.tar.xz
nixpkgs-3d91e7fde081da2a6902e0d959baeb0345136945.tar.zst
nixpkgs-3d91e7fde081da2a6902e0d959baeb0345136945.zip
pythonPackages.capturer: init at 2.4
Diffstat (limited to 'pkgs/development/python-modules/capturer')
-rw-r--r--pkgs/development/python-modules/capturer/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/capturer/default.nix b/pkgs/development/python-modules/capturer/default.nix
new file mode 100644
index 00000000000..86062d28a85
--- /dev/null
+++ b/pkgs/development/python-modules/capturer/default.nix
@@ -0,0 +1,27 @@
+{ lib, buildPythonPackage, fetchFromGitHub, humanfriendly, pytest, pytestcov }:
+
+buildPythonPackage rec {
+  pname = "capturer";
+  version = "2.4";
+
+  src = fetchFromGitHub {
+    owner = "xolox";
+    repo = "python-capturer";
+    rev = version;
+    sha256 = "07zy264xd0g7pz9sxjqcpwmrck334xcbb7wfss26lmvgdr5nhcb9";
+  };
+
+  propagatedBuildInputs = [ humanfriendly ];
+
+  checkPhase = ''
+    PATH=$PATH:$out/bin pytest .
+  '';
+  checkInputs = [ pytest ];
+
+  meta = with lib; {
+    description = "Easily capture stdout/stderr of the current process and subprocesses";
+    homepage = https://github.com/xolox/python-capturer;
+    license = licenses.mit;
+    maintainers = with maintainers; [ eyjhb ];
+  };
+}