about summary refs log tree commit diff
path: root/pkgs/development/python-modules/capturer/default.nix
blob: b9895dd18f974cac7cb08bfe061da975d41f0aad (plain) (blame)
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
28
29
30
31
32
33
34
{
  stdenv,
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  humanfriendly,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "capturer";
  version = "3.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "xolox";
    repo = "python-capturer";
    rev = version;
    sha256 = "0fwrxa049gzin5dck7fvwhdp1856jrn0d7mcjcjsd7ndqvhgvjj1";
  };

  propagatedBuildInputs = [ humanfriendly ];

  # hangs on darwin
  doCheck = !stdenv.hostPlatform.isDarwin;
  nativeCheckInputs = [ pytestCheckHook ];

  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 ];
  };
}