11 buildPythonPackage rec {
12 pname = "subprocess-tee";
16 src = fetchFromGitHub {
18 repo = "subprocess-tee";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-rfI4UZdENfSQ9EbQeldv6DDGIQe5yMjboGTCOwed1AU=";
34 # cyclic dependency on `molecule` (see https://github.com/pycontribs/subprocess-tee/issues/50)
36 # duplicates in console output, rich issue
37 "test_rich_console_ex"
40 pythonImportsCheck = [ "subprocess_tee" ];
43 homepage = "https://github.com/pycontribs/subprocess-tee";
44 description = "Subprocess.run drop-in replacement that supports a tee mode";
45 changelog = "https://github.com/pycontribs/subprocess-tee/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
46 license = licenses.mit;
47 maintainers = with maintainers; [ putchar ];