python312Packages.pytest-bdd: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-11 15:12:16 +02:00
parent 6cde10ba6b
commit 7db70a7b68
1 changed files with 16 additions and 23 deletions

View File

@ -1,14 +1,15 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, mako
, parse
, parse-type
, poetry-core
, pytest
, pytestCheckHook
, pythonOlder
, typing-extensions
{
lib,
buildPythonPackage,
fetchFromGitHub,
mako,
parse,
parse-type,
poetry-core,
pytest,
pytestCheckHook,
pythonOlder,
typing-extensions,
}:
buildPythonPackage rec {
@ -25,13 +26,9 @@ buildPythonPackage rec {
hash = "sha256-PC4VSsUU5qEFp/C/7OTgHINo8wmOo0w2d1Hpe0EnFzE=";
};
build-system = [
poetry-core
];
build-system = [ poetry-core ];
buildInputs = [
pytest
];
buildInputs = [ pytest ];
dependencies = [
mako
@ -40,17 +37,13 @@ buildPythonPackage rec {
typing-extensions
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
export PATH=$PATH:$out/bin
'';
pythonImportsCheck = [
"pytest_bdd"
];
pythonImportsCheck = [ "pytest_bdd" ];
meta = with lib; {
description = "BDD library for the pytest";