2021-01-24 11:03:11 +00:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, humanfriendly, pytestCheckHook, pytestcov }:
|
2019-07-23 15:59:48 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "capturer";
|
2020-06-23 05:31:32 +01:00
|
|
|
version = "3.0";
|
2019-07-23 15:59:48 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xolox";
|
|
|
|
repo = "python-capturer";
|
|
|
|
rev = version;
|
2020-06-23 05:31:32 +01:00
|
|
|
sha256 = "0fwrxa049gzin5dck7fvwhdp1856jrn0d7mcjcjsd7ndqvhgvjj1";
|
2019-07-23 15:59:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ humanfriendly ];
|
|
|
|
|
2021-01-24 11:03:11 +00:00
|
|
|
# hangs on darwin
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
2019-07-23 15:59:48 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Easily capture stdout/stderr of the current process and subprocesses";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/xolox/python-capturer";
|
2019-07-23 15:59:48 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ eyjhb ];
|
|
|
|
};
|
|
|
|
}
|