Files
nixpkgs/pkgs/development/python-modules/reconplogger/default.nix
2025-08-30 10:34:10 +00:00

59 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
flask,
logmatic-python,
pytestCheckHook,
pythonOlder,
pyyaml,
requests,
setuptools,
testfixtures,
}:
buildPythonPackage rec {
pname = "reconplogger";
version = "4.18.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "omni-us";
repo = "reconplogger";
tag = "v${version}";
hash = "sha256-awUGDE9yuPhWMZ4osCJKw8v5V1leoFF3DeCbluHeN70=";
};
build-system = [ setuptools ];
dependencies = [
logmatic-python
pyyaml
];
optional-dependencies = {
all = [
flask
requests
];
};
nativeCheckInputs = [
pytestCheckHook
testfixtures
];
pythonImportsCheck = [ "reconplogger" ];
enabledTestPaths = [ "reconplogger_tests.py" ];
meta = with lib; {
description = "Module to ease the standardization of logging within omni:us";
homepage = "https://github.com/omni-us/reconplogger";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}