python312Packages.snakemake-interface-common: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-12 09:02:43 +02:00
parent 8127657f4a
commit 3c96eb56e1

View File

@ -1,11 +1,12 @@
{ lib {
, argparse-dataclass lib,
, buildPythonPackage argparse-dataclass,
, configargparse buildPythonPackage,
, fetchFromGitHub configargparse,
, poetry-core fetchFromGitHub,
, pythonOlder poetry-core,
, pytestCheckHook pythonOlder,
pytestCheckHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -22,26 +23,18 @@ buildPythonPackage rec {
hash = "sha256-N8mSS+gABAgXm01BcsMk89a3HsIsc3RHxCAi3GlxtRg="; hash = "sha256-N8mSS+gABAgXm01BcsMk89a3HsIsc3RHxCAi3GlxtRg=";
}; };
build-system = [ build-system = [ poetry-core ];
poetry-core
];
dependencies = [ dependencies = [
argparse-dataclass argparse-dataclass
configargparse configargparse
]; ];
nativeCheckInputs = [ nativeCheckInputs = [ pytestCheckHook ];
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "snakemake_interface_common" ];
"snakemake_interface_common"
];
pytestFlagsArray = [ pytestFlagsArray = [ "tests/tests.py" ];
"tests/tests.py"
];
meta = with lib; { meta = with lib; {
description = "Common functions and classes for Snakemake and its plugins"; description = "Common functions and classes for Snakemake and its plugins";