mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
sigma-cli: format with nixfmt
This commit is contained in:
parent
22ee207e13
commit
83d2fca254
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
python3,
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
@ -20,9 +21,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
--replace '= "^' '= ">='
|
||||
'';
|
||||
|
||||
build-system = with python3.pkgs; [
|
||||
poetry-core
|
||||
];
|
||||
build-system = with python3.pkgs; [ poetry-core ];
|
||||
|
||||
dependencies = with python3.pkgs; [
|
||||
click
|
||||
@ -39,9 +38,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
pysigma-pipeline-windows
|
||||
];
|
||||
|
||||
nativeCheckInputs = with python3.pkgs; [
|
||||
pytestCheckHook
|
||||
];
|
||||
nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ];
|
||||
|
||||
disabledTests = [
|
||||
"test_plugin_list"
|
||||
@ -61,9 +58,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
"test_check_exclude"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"sigma.cli"
|
||||
];
|
||||
pythonImportsCheck = [ "sigma.cli" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Sigma command line interface";
|
||||
|
Loading…
Reference in New Issue
Block a user