12 buildPythonPackage rec {
13 pname = "fnv-hash-fast";
17 src = fetchFromGitHub {
19 repo = "fnv-hash-fast";
21 hash = "sha256-gAHCssJC6sTR6ftkQHrtF/5Nf9dXE4ykRhVusb0Gu3I=";
25 substituteInPlace pyproject.toml \
26 --replace "--cov=fnv_hash_fast --cov-report=term-missing:skip-covered" ""
36 propagatedBuildInputs = [
40 pythonImportsCheck = [
49 description = "A fast version of fnv1a";
50 homepage = "https://github.com/bdraco/fnv-hash-fast";
51 changelog = "https://github.com/bdraco/fnv-hash-fast/blob/${src.rev}/CHANGELOG.md";
52 license = licenses.mit;
53 maintainers = with maintainers; [ hexa ];