3a4df29a92
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
43 lines
806 B
Nix
43 lines
806 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "verboselogs";
|
|
version = "1.7";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xolox";
|
|
repo = "python-verboselogs";
|
|
rev = version;
|
|
hash = "sha256-hcIdbn0gdkdJ33KcOx6uv0iMXW0x+i880SoROi+qX4I=";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
mock
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"verboselogs"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Do not run pylint plugin test
|
|
"test_pylint_plugin"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Verbose logging for Python's logging module";
|
|
homepage = "https://github.com/xolox/python-verboselogs";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ eyjhb ];
|
|
};
|
|
}
|