Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, python, fetchPypi }: 2 3with python.pkgs; 4 5buildPythonApplication rec { 6 pname = "rdbtools"; 7 version = "0.1.15"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "689e57e42f43bdc73ea4e893d9676819980d17968696826b69fbd951f59772de"; 12 }; 13 14 propagatedBuildInputs = [ redis python-lzf ]; 15 16 # No tests in published package 17 doCheck = false; 18 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 }; 25}