7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
34 lines
768 B
Nix
34 lines
768 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|