mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
28 lines
742 B
Nix
28 lines
742 B
Nix
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, humanfriendly, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "capturer";
|
|
version = "3.0";
|
|
format = "setuptools";
|
|
|
|
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 ];
|
|
};
|
|
}
|