12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
23 hash = "sha256-cvoRiaGGTpZWfSE6DDT6GwDmc/TC/Z/E76Qy9Zzkpsw=";
26 build-system = [ setuptools ];
28 dependencies = [ redis ];
30 nativeCheckInputs = [ unittestCheckHook ];
33 ${pkgs.redis}/bin/redis-server &
41 pythonImportsCheck = [ "walrus" ];
43 __darwinAllowLocalNetworking = true;
46 description = "Lightweight Python utilities for working with Redis";
47 homepage = "https://github.com/coleifer/walrus";
48 changelog = "https://github.com/coleifer/walrus/blob/${version}/CHANGELOG.md";
49 license = licenses.mit;
50 maintainers = with maintainers; [ mbalatsko ];