depot/third_party/nixpkgs/pkgs/development/python-modules/capturer/default.nix
Default email 1ffc76754d Project import generated by Copybara.
GitOrigin-RevId: a5cc7d3197705f933d88e97c0c61849219ce76c1
2020-07-18 18:06:22 +02:00

27 lines
703 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, humanfriendly, pytest, pytestcov }:
buildPythonPackage rec {
pname = "capturer";
version = "3.0";
src = fetchFromGitHub {
owner = "xolox";
repo = "python-capturer";
rev = version;
sha256 = "0fwrxa049gzin5dck7fvwhdp1856jrn0d7mcjcjsd7ndqvhgvjj1";
};
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 ];
};
}