Update aider (#375634)
[NixPkgs.git] / pkgs / development / python-modules / walrus / default.nix
blob92b58509c7d68473f831fc38a2c2186c8cc4fcb4
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pkgs,
6   pythonOlder,
7   redis,
8   setuptools,
9   unittestCheckHook,
12 buildPythonPackage rec {
13   pname = "walrus";
14   version = "0.9.4";
15   pyproject = true;
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "coleifer";
21     repo = "walrus";
22     tag = version;
23     hash = "sha256-cvoRiaGGTpZWfSE6DDT6GwDmc/TC/Z/E76Qy9Zzkpsw=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [ redis ];
30   nativeCheckInputs = [ unittestCheckHook ];
32   preCheck = ''
33     ${pkgs.redis}/bin/redis-server &
34     REDIS_PID=$!
35   '';
37   postCheck = ''
38     kill $REDIS_PID
39   '';
41   pythonImportsCheck = [ "walrus" ];
43   __darwinAllowLocalNetworking = true;
45   meta = with lib; {
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 ];
51   };