python312Packages.asyncstdlib: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-16 10:52:21 +02:00
parent 99ae272a9a
commit 4e96fb5b23

View File

@ -1,9 +1,10 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, flit-core fetchFromGitHub,
, pytestCheckHook flit-core,
, pythonOlder pytestCheckHook,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -20,17 +21,11 @@ buildPythonPackage rec {
hash = "sha256-OLb4+7FFeVDW0ePyVJW8aaosouxlU/4Uq2ktvVLpDFY="; hash = "sha256-OLb4+7FFeVDW0ePyVJW8aaosouxlU/4Uq2ktvVLpDFY=";
}; };
build-system = [ build-system = [ flit-core ];
flit-core
];
nativeCheckInputs = [ nativeCheckInputs = [ pytestCheckHook ];
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "asyncstdlib" ];
"asyncstdlib"
];
meta = with lib; { meta = with lib; {
description = "Python library that extends the Python asyncio standard library"; description = "Python library that extends the Python asyncio standard library";