aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/capturer/default.nix
blob: 2dcd075ec0e16d9dec5f205fe11389a10455e3c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 ];
  };
}