depot/third_party/nixpkgs/pkgs/development/python-modules/verboselogs/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

42 lines
814 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=";
};
nativeCheckInputs = [
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 ];
};
}