python3Packages.walrus: init at 0.9.3

This commit is contained in:
Maksym Balatsko 2023-09-27 07:45:14 -07:00
parent 7ac382de24
commit 065ac7bec9
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,45 @@
{ lib
, pkgs
, buildPythonPackage
, fetchFromGitHub
, redis
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "walrus";
version = "0.9.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "coleifer";
repo = "walrus";
rev = version;
hash = "sha256-jinYMGSBAY8HTg92qU/iU5vGIrrDr5SeQG0XjsBVfcc=";
};
propagatedBuildInputs = [
redis
];
nativeCheckInputs = [ unittestCheckHook ];
preCheck = ''
${pkgs.redis}/bin/redis-server &
REDIS_PID=$!
'';
postCheck = ''
kill $REDIS_PID
'';
pythonImportsCheck = [ "walrus" ];
meta = with lib; {
description = "Lightweight Python utilities for working with Redis";
homepage = "https://github.com/coleifer/walrus";
changelog = "https://github.com/coleifer/walrus/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ mbalatsko ];
};
}

View file

@ -13844,6 +13844,8 @@ self: super: with self; {
wallbox = callPackage ../development/python-modules/wallbox { };
walrus = callPackage ../development/python-modules/walrus { };
wand = callPackage ../development/python-modules/wand { };
wandb = callPackage ../development/python-modules/wandb { };