python3Packages.fnv-hash-fast: 1.0.2 -> 1.2.2

https://github.com/bdraco/fnv-hash-fast/blob/v1.2.2/CHANGELOG.md
This commit is contained in:
Martin Weinelt
2025-01-27 10:55:24 +01:00
parent 3a82055f14
commit 8508563a5e
@@ -6,20 +6,21 @@
poetry-core,
setuptools,
fnvhash,
pytest-codspeed,
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "fnv-hash-fast";
version = "1.0.2";
version = "1.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "bdraco";
repo = "fnv-hash-fast";
tag = "v${version}";
hash = "sha256-kJQZnj1ja7cVZSDOuUI3rkNIvyH508wFKAvJ5XfwCNU=";
hash = "sha256-A7DLw9Y+iz1cwkBKEFXQDzaiKHxNYaExzCzR8XRGli0=";
};
build-system = [
@@ -33,6 +34,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "fnv_hash_fast" ];
nativeCheckInputs = [
pytest-codspeed
pytest-cov-stub
pytestCheckHook
];
@@ -40,7 +42,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Fast version of fnv1a";
homepage = "https://github.com/bdraco/fnv-hash-fast";
changelog = "https://github.com/bdraco/fnv-hash-fast/blob/${src.rev}/CHANGELOG.md";
changelog = "https://github.com/bdraco/fnv-hash-fast/blob/${src.tag}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};