rdbtools: init at 0.1.14

This commit is contained in:
Jaka Hudoklin 2019-09-13 10:20:32 +02:00 committed by Jaka Hudoklin
parent 11b52e4046
commit df0ff77a23
No known key found for this signature in database
GPG key ID: D1F18234B07BD6E2
2 changed files with 27 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };