2021-01-25 08:26:54 +00:00
|
|
|
{ lib, python }:
|
2019-09-13 09:20:32 +01:00
|
|
|
|
|
|
|
with python.pkgs;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "rdbtools";
|
2020-10-15 07:15:22 +01:00
|
|
|
version = "0.1.15";
|
2019-09-13 09:20:32 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-15 07:15:22 +01:00
|
|
|
sha256 = "689e57e42f43bdc73ea4e893d9676819980d17968696826b69fbd951f59772de";
|
2019-09-13 09:20:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ redis python-lzf ];
|
|
|
|
|
|
|
|
# No tests in published package
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-13 09:20:32 +01:00
|
|
|
description = "Parse Redis dump.rdb files, Analyze Memory, and Export Data to JSON";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/sripathikrishnan/redis-rdb-tools";
|
2019-09-13 09:20:32 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
};
|
|
|
|
}
|