python3Packages.fnv-hash-fast: 2.0.2 -> 2.0.3

https://github.com/Bluetooth-Devices/fnv-hash-fast/releases/tag/v2.0.3
This commit is contained in:
Martin Weinelt
2026-05-17 15:34:03 +02:00
parent b35d808f23
commit c481aba71b

View File

@@ -11,16 +11,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "fnv-hash-fast";
version = "2.0.2";
version = "2.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "bdraco";
repo = "fnv-hash-fast";
tag = "v${version}";
hash = "sha256-wfiOI23LzdoTYl5/Wr/+3qvcJ3ce9ZrfETQXX1g6eIU=";
tag = "v${finalAttrs.version}";
hash = "sha256-yDEgVNaSqZ1AJivpkpinZznKlPEXH6mjXBe5aVp/3hQ=";
};
build-system = [
@@ -42,8 +42,8 @@ buildPythonPackage rec {
meta = {
description = "Fast version of fnv1a";
homepage = "https://github.com/bdraco/fnv-hash-fast";
changelog = "https://github.com/bdraco/fnv-hash-fast/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/Bluetooth-Devices/fnv-hash-fast/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
};
}
})