lol

python312Packages.asyncio-dgram: format with nixfmt

+11 -14
+11 -14
pkgs/development/python-modules/asyncio-dgram/default.nix
··· 1 - { lib 2 - , stdenv 3 - , buildPythonPackage 4 - , fetchFromGitHub 5 - , pytest-asyncio 6 - , pytestCheckHook 7 - , pythonOlder 8 - , setuptools 1 + { 2 + lib, 3 + stdenv, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + pytest-asyncio, 7 + pytestCheckHook, 8 + pythonOlder, 9 + setuptools, 9 10 }: 10 11 11 12 buildPythonPackage rec { ··· 22 23 hash = "sha256-Eb/9JtgPT2yOlfnn5Ox8M0kcQhSlRCuX8+Rq6amki8Q="; 23 24 }; 24 25 25 - build-system = [ 26 - setuptools 27 - ]; 26 + build-system = [ setuptools ]; 28 27 29 28 nativeCheckInputs = [ 30 29 pytest-asyncio ··· 40 39 "test_from_socket_bad_socket" 41 40 ]; 42 41 43 - pythonImportsCheck = [ 44 - "asyncio_dgram" 45 - ]; 42 + pythonImportsCheck = [ "asyncio_dgram" ]; 46 43 47 44 meta = with lib; { 48 45 description = "Python support for higher level Datagram";