pythonPackages.capturer: init at 2.4
This commit is contained in:
parent
1de0c3275a
commit
3d91e7fde0
27
pkgs/development/python-modules/capturer/default.nix
Normal file
27
pkgs/development/python-modules/capturer/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, humanfriendly, pytest, pytestcov }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "capturer";
|
||||
version = "2.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xolox";
|
||||
repo = "python-capturer";
|
||||
rev = version;
|
||||
sha256 = "07zy264xd0g7pz9sxjqcpwmrck334xcbb7wfss26lmvgdr5nhcb9";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -1465,6 +1465,8 @@ in {
|
||||
|
||||
capstone = callPackage ../development/python-modules/capstone { };
|
||||
|
||||
capturer = callPackage ../development/python-modules/capturer { };
|
||||
|
||||
cement = callPackage ../development/python-modules/cement {};
|
||||
|
||||
cgen = callPackage ../development/python-modules/cgen { };
|
||||
|
Loading…
Reference in New Issue
Block a user