mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 17:53:14 +00:00
python311Packages.reconplogger: init at 4.13.0
Module to ease the standardization of logging within omni:us https://github.com/omni-us/reconplogger
This commit is contained in:
parent
b0de35af03
commit
3835e47059
63
pkgs/development/python-modules/reconplogger/default.nix
Normal file
63
pkgs/development/python-modules/reconplogger/default.nix
Normal file
@ -0,0 +1,63 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, flask
|
||||
, logmatic-python
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, pyyaml
|
||||
, requests
|
||||
, setuptools
|
||||
, testfixtures
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "reconplogger";
|
||||
version = "4.13.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "omni-us";
|
||||
repo = "reconplogger";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-eqo26u99nTO/8kgG9nqeVArWJiwP4wqkcisAju8vOPs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
logmatic-python
|
||||
pyyaml
|
||||
];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
all = [
|
||||
flask
|
||||
requests
|
||||
];
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
testfixtures
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"reconplogger"
|
||||
];
|
||||
|
||||
pytestFlagsArray = [
|
||||
"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 ];
|
||||
};
|
||||
}
|
@ -12464,6 +12464,8 @@ self: super: with self; {
|
||||
|
||||
recommonmark = callPackage ../development/python-modules/recommonmark { };
|
||||
|
||||
reconplogger = callPackage ../development/python-modules/reconplogger { };
|
||||
|
||||
recordlinkage = callPackage ../development/python-modules/recordlinkage { };
|
||||
|
||||
recurring-ical-events = callPackage ../development/python-modules/recurring-ical-events { };
|
||||
|
Loading…
Reference in New Issue
Block a user