mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
python3Packages.subprocess-tee: init at 0.3.2
This commit is contained in:
parent
268e92bde0
commit
e46127fb1c
37
pkgs/development/python-modules/subprocess-tee/default.nix
Normal file
37
pkgs/development/python-modules/subprocess-tee/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools-scm
|
||||
, pytestCheckHook
|
||||
, enrich
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "subprocess-tee";
|
||||
version = "0.3.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "01b0z8mcm568v9carhi0py1hs34wrbnlzyvdmhqzipql407kdpk2";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
enrich
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"subprocess_tee"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/pycontribs/subprocess-tee";
|
||||
description = "A subprocess.run drop-in replacement that supports a tee mode";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ putchar ];
|
||||
};
|
||||
}
|
@ -8382,6 +8382,8 @@ in {
|
||||
|
||||
subliminal = callPackage ../development/python-modules/subliminal { };
|
||||
|
||||
subprocess-tee = callPackage ../development/python-modules/subprocess-tee { };
|
||||
|
||||
subunit = callPackage ../development/python-modules/subunit {
|
||||
inherit (pkgs) subunit cppunit check;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user