mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
27 lines
717 B
Nix
27 lines
717 B
Nix
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, humanfriendly, pytestCheckHook }:
|
|
|
|
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;
|
|
nativeCheckInputs = [ 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 ];
|
|
};
|
|
}
|