nixpkgs/pkgs/tools/admin/iredis/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.6 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, python3
, fetchFromGitHub
}:
2022-07-14 01:04:20 +01:00
python3.pkgs.buildPythonApplication rec {
2022-07-14 01:04:20 +01:00
pname = "iredis";
version = "1.13.2";
2023-01-03 04:20:00 +00:00
format = "pyproject";
2022-07-14 01:04:20 +01:00
src = fetchFromGitHub {
owner = "laixintao";
repo = "iredis";
rev = "refs/tags/v${version}";
hash = "sha256-dGOB7emhuP+V0pHlSdS1L1OC4jO3jtf5RFOy0UFYiuY=";
2022-07-14 01:04:20 +01:00
};
pythonRelaxDeps = [
"configobj"
"wcwidth"
"click"
"packaging"
];
2022-07-14 01:04:20 +01:00
nativeBuildInputs = with python3.pkgs; [
2023-01-03 04:20:00 +00:00
poetry-core
pythonRelaxDepsHook
2023-01-03 04:20:00 +00:00
];
propagatedBuildInputs = with python3.pkgs; [
2022-07-14 01:04:20 +01:00
pygments
click
configobj
mistune
2022-07-14 01:04:20 +01:00
packaging
pendulum
prompt-toolkit
redis
wcwidth
];
nativeCheckInputs = with python3.pkgs; [
2022-07-14 01:04:20 +01:00
pytestCheckHook
pexpect
];
pytestFlagsArray = [
# Fails on sandbox
"--ignore=tests/unittests/test_client.py"
"--deselect=tests/unittests/test_render_functions.py::test_render_unixtime_config_raw"
"--deselect=tests/unittests/test_render_functions.py::test_render_time"
# Only execute unittests, because cli tests require a running Redis
"tests/unittests/"
] ++ lib.optionals stdenv.isDarwin [
# Flaky test
"--deselect=tests/unittests/test_utils.py::test_timer"
2022-07-14 01:04:20 +01:00
];
pythonImportsCheck = [ "iredis" ];
meta = with lib; {
description = "A Terminal Client for Redis with AutoCompletion and Syntax Highlighting";
changelog = "https://github.com/laixintao/iredis/raw/${src.rev}/CHANGELOG.md";
2022-07-14 01:04:20 +01:00
homepage = "https://iredis.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ marsam ];
};
}