Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.aio-pika: format with nixfmt

+17 -20
+17 -20
pkgs/development/python-modules/aio-pika/default.nix
··· 1 - { lib 2 - , aiomisc-pytest 3 - , aiormq 4 - , buildPythonPackage 5 - , docker 6 - , fetchFromGitHub 7 - , pamqp 8 - , poetry-core 9 - , pytestCheckHook 10 - , pythonOlder 11 - , shortuuid 12 - , testcontainers 13 - , wrapt 14 - , yarl 1 + { 2 + lib, 3 + aiomisc-pytest, 4 + aiormq, 5 + buildPythonPackage, 6 + docker, 7 + fetchFromGitHub, 8 + pamqp, 9 + poetry-core, 10 + pytestCheckHook, 11 + pythonOlder, 12 + shortuuid, 13 + testcontainers, 14 + wrapt, 15 + yarl, 15 16 }: 16 17 17 18 buildPythonPackage rec { ··· 28 29 hash = "sha256-aRXYFW4fl3iXH3bwP30+TllRm4BkIUcGMX/lNfhiqjo="; 29 30 }; 30 31 31 - build-system = [ 32 - poetry-core 33 - ]; 32 + build-system = [ poetry-core ]; 34 33 35 34 dependencies = [ 36 35 aiormq ··· 67 66 "tests/test_types.py" 68 67 ]; 69 68 70 - pythonImportsCheck = [ 71 - "aio_pika" 72 - ]; 69 + pythonImportsCheck = [ "aio_pika" ]; 73 70 74 71 meta = with lib; { 75 72 description = "AMQP 0.9 client designed for asyncio and humans";