mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
python312Packages.pytest-aio: format with nixfmt
This commit is contained in:
parent
36ba4c15c7
commit
4801ec1d5b
@ -1,16 +1,17 @@
|
||||
{ lib
|
||||
, anyio
|
||||
, buildPythonPackage
|
||||
, curio
|
||||
, fetchFromGitHub
|
||||
, hypothesis
|
||||
, pytest
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, poetry-core
|
||||
, sniffio
|
||||
, trio
|
||||
, trio-asyncio
|
||||
{
|
||||
lib,
|
||||
anyio,
|
||||
buildPythonPackage,
|
||||
curio,
|
||||
fetchFromGitHub,
|
||||
hypothesis,
|
||||
pytest,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
poetry-core,
|
||||
sniffio,
|
||||
trio,
|
||||
trio-asyncio,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -27,13 +28,9 @@ buildPythonPackage rec {
|
||||
hash = "sha256-MexIL9yFTzhkJ/61GgYoT54MWV8B0c1/CWkN5FVTvnw=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
poetry-core
|
||||
];
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
buildInputs = [
|
||||
pytest
|
||||
];
|
||||
buildInputs = [ pytest ];
|
||||
|
||||
dependencies = [
|
||||
anyio
|
||||
@ -44,13 +41,9 @@ buildPythonPackage rec {
|
||||
trio-asyncio
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pytest_aio"
|
||||
];
|
||||
pythonImportsCheck = [ "pytest_aio" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pytest plugin for aiohttp support";
|
||||
|
Loading…
Reference in New Issue
Block a user