Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / rdbtools / default.nix
blob40cbce35ba3f24b060fcfe9a07f318c46da93bba
1 { lib, python, fetchPypi }:
3 with python.pkgs;
5 buildPythonApplication rec {
6   pname = "rdbtools";
7   version = "0.1.15";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "689e57e42f43bdc73ea4e893d9676819980d17968696826b69fbd951f59772de";
12   };
14   propagatedBuildInputs = [ redis python-lzf ];
16   # No tests in published package
17   doCheck = false;
19   meta = with lib; {
20     description = "Parse Redis dump.rdb files, Analyze Memory, and Export Data to JSON";
21     homepage = "https://github.com/sripathikrishnan/redis-rdb-tools";
22     license = licenses.mit;
23     maintainers = with maintainers; [ offline ];
24   };