forked from mirrors/nixpkgs
rdbtools: init at 0.1.14
This commit is contained in:
parent
11b52e4046
commit
df0ff77a23
25
pkgs/development/tools/rdbtools/default.nix
Normal file
25
pkgs/development/tools/rdbtools/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, python }:
|
||||
|
||||
with python.pkgs;
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "rdbtools";
|
||||
version = "0.1.14";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "03vdwwkqz8py6c3wfgx402rn8pjjfn44w3gbxzr60lbkx27m63yj";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ redis python-lzf ];
|
||||
|
||||
# No tests in published package
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Parse Redis dump.rdb files, Analyze Memory, and Export Data to JSON";
|
||||
homepage = https://github.com/sripathikrishnan/redis-rdb-tools;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ offline ];
|
||||
};
|
||||
}
|
|
@ -5949,6 +5949,8 @@ in
|
|||
|
||||
rc = callPackage ../shells/rc { };
|
||||
|
||||
rdbtools = callPackage ../development/tools/rdbtools { python = python3; };
|
||||
|
||||
rdma-core = callPackage ../os-specific/linux/rdma-core { };
|
||||
|
||||
react-native-debugger = callPackage ../development/tools/react-native-debugger { };
|
||||
|
|
Loading…
Reference in a new issue