summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/aioitertools/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/aioitertools/default.nix')
-rw-r--r--pkgs/development/python-modules/aioitertools/default.nix39
1 files changed, 16 insertions, 23 deletions
diff --git a/pkgs/development/python-modules/aioitertools/default.nix b/pkgs/development/python-modules/aioitertools/default.nix
index 6fdc7dfd4d62..3f4870df41ad 100644
--- a/pkgs/development/python-modules/aioitertools/default.nix
+++ b/pkgs/development/python-modules/aioitertools/default.nix
@@ -1,17 +1,18 @@
-{ lib
-, buildPythonPackage
-, fetchpatch
-, fetchPypi
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ fetchpatch,
+ fetchPypi,
+ pythonOlder,
-# native
-, flit-core
+ # native
+ flit-core,
-# propagates
-, typing-extensions
+ # propagates
+ typing-extensions,
-# tests
-, unittestCheckHook
+ # tests
+ unittestCheckHook,
}:
buildPythonPackage rec {
@@ -26,21 +27,13 @@ buildPythonPackage rec {
hash = "sha256-QsaLjdOmnCv38iM7999LtYtVe8pSUqwC7VGHu8Z9aDE=";
};
- nativeBuildInputs = [
- flit-core
- ];
+ nativeBuildInputs = [ flit-core ];
- propagatedBuildInputs = lib.optionals (pythonOlder "3.10") [
- typing-extensions
- ];
+ propagatedBuildInputs = lib.optionals (pythonOlder "3.10") [ typing-extensions ];
- nativeCheckInputs = [
- unittestCheckHook
- ];
+ nativeCheckInputs = [ unittestCheckHook ];
- pythonImportsCheck = [
- "aioitertools"
- ];
+ pythonImportsCheck = [ "aioitertools" ];
meta = with lib; {
description = "Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables";