0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

python3Packages: format with nixfmt

This commit is contained in:
Martin Weinelt 2024-05-22 16:01:06 +02:00
parent 691216eca3
commit 59b1aef590
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
6796 changed files with 97594 additions and 98381 deletions

View file

@ -1,11 +1,12 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytest-asyncio
, pytestCheckHook
, pythonOlder
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
@ -27,22 +28,16 @@ buildPythonPackage rec {
--replace " --cov=aiohttp_fast_url_dispatcher --cov-report=term-missing:skip-covered" ""
'';
nativeBuildInputs = [
poetry-core
];
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
aiohttp
];
propagatedBuildInputs = [ aiohttp ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [
"aiohttp_fast_url_dispatcher"
];
pythonImportsCheck = [ "aiohttp_fast_url_dispatcher" ];
meta = with lib; {
description = "A faster URL dispatcher for aiohttp";