nixpkgs/pkgs/development/python-modules/verboselogs/default.nix

44 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 ];
};
}