depot/third_party/nixpkgs/pkgs/development/python-modules/capturer/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

26 lines
722 B
Nix

{ stdenv, lib, buildPythonPackage, fetchFromGitHub, humanfriendly, pytestCheckHook, pytestcov }:
buildPythonPackage rec {
pname = "capturer";
version = "3.0";
src = fetchFromGitHub {
owner = "xolox";
repo = "python-capturer";
rev = version;
sha256 = "0fwrxa049gzin5dck7fvwhdp1856jrn0d7mcjcjsd7ndqvhgvjj1";
};
propagatedBuildInputs = [ humanfriendly ];
# hangs on darwin
doCheck = !stdenv.isDarwin;
checkInputs = [ 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 ];
};
}