10 buildPythonPackage rec {
11 pname = "verboselogs";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
19 repo = "python-verboselogs";
21 hash = "sha256-hcIdbn0gdkdJ33KcOx6uv0iMXW0x+i880SoROi+qX4I=";
29 pythonImportsCheck = [ "verboselogs" ];
32 # Do not run pylint plugin test
37 description = "Verbose logging for Python's logging module";
38 homepage = "https://github.com/xolox/python-verboselogs";
39 license = licenses.mit;
40 maintainers = with maintainers; [ eyjhb ];