python3Packages.walrus: 0.9.5 -> 0.9.6 (#477682)

This commit is contained in:
Fabian Affolter
2026-01-07 12:54:34 +00:00
committed by GitHub
@@ -2,25 +2,22 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
redis,
redisTestHook,
setuptools,
unittestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "walrus";
version = "0.9.5";
version = "0.9.6";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "coleifer";
repo = "walrus";
tag = version;
hash = "sha256-iZe0jqIzbGKjkhlVwJQXPz9UTBzLcnnO2IuKa3sHaMw=";
tag = finalAttrs.version;
hash = "sha256-9YUN1OJKOmAHpMnM9gQ0J2sy/iYuadrT/fgH9d1RIZ8=";
};
build-system = [ setuptools ];
@@ -39,8 +36,8 @@ buildPythonPackage rec {
meta = {
description = "Lightweight Python utilities for working with Redis";
homepage = "https://github.com/coleifer/walrus";
changelog = "https://github.com/coleifer/walrus/blob/${version}/CHANGELOG.md";
changelog = "https://github.com/coleifer/walrus/blob/${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}
})