From 3c96eb56e19600b19eabe074b7afe36d4ab79e11 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 12 Apr 2024 09:02:43 +0200 Subject: [PATCH] python312Packages.snakemake-interface-common: format with nixfmt --- .../snakemake-interface-common/default.nix | 33 ++++++++----------- 1 file changed, 13 insertions(+), 20 deletions(-) diff --git a/pkgs/development/python-modules/snakemake-interface-common/default.nix b/pkgs/development/python-modules/snakemake-interface-common/default.nix index 7856e541f8df..2bc7a0672dba 100644 --- a/pkgs/development/python-modules/snakemake-interface-common/default.nix +++ b/pkgs/development/python-modules/snakemake-interface-common/default.nix @@ -1,11 +1,12 @@ -{ lib -, argparse-dataclass -, buildPythonPackage -, configargparse -, fetchFromGitHub -, poetry-core -, pythonOlder -, pytestCheckHook +{ + lib, + argparse-dataclass, + buildPythonPackage, + configargparse, + fetchFromGitHub, + poetry-core, + pythonOlder, + pytestCheckHook, }: buildPythonPackage rec { @@ -22,26 +23,18 @@ buildPythonPackage rec { hash = "sha256-N8mSS+gABAgXm01BcsMk89a3HsIsc3RHxCAi3GlxtRg="; }; - build-system = [ - poetry-core - ]; + build-system = [ poetry-core ]; dependencies = [ argparse-dataclass configargparse ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "snakemake_interface_common" - ]; + pythonImportsCheck = [ "snakemake_interface_common" ]; - pytestFlagsArray = [ - "tests/tests.py" - ]; + pytestFlagsArray = [ "tests/tests.py" ]; meta = with lib; { description = "Common functions and classes for Snakemake and its plugins";