summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/fnv-hash-fast/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/fnv-hash-fast/default.nix')
-rw-r--r--pkgs/development/python-modules/fnv-hash-fast/default.nix31
1 files changed, 13 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/fnv-hash-fast/default.nix b/pkgs/development/python-modules/fnv-hash-fast/default.nix
index 01e57845d3bb..fc7ac6abb006 100644
--- a/pkgs/development/python-modules/fnv-hash-fast/default.nix
+++ b/pkgs/development/python-modules/fnv-hash-fast/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, cython
-, poetry-core
-, setuptools
-, wheel
-, fnvhash
-, pytestCheckHook
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ cython,
+ poetry-core,
+ setuptools,
+ wheel,
+ fnvhash,
+ pytestCheckHook,
}:
buildPythonPackage rec {
@@ -33,17 +34,11 @@ buildPythonPackage rec {
wheel
];
- propagatedBuildInputs = [
- fnvhash
- ];
+ propagatedBuildInputs = [ fnvhash ];
- pythonImportsCheck = [
- "fnv_hash_fast"
- ];
+ pythonImportsCheck = [ "fnv_hash_fast" ];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "A fast version of fnv1a";