mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
vunnel: format with nixfmt
This commit is contained in:
parent
70c539f695
commit
fd1ee46c68
@ -1,7 +1,8 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, git
|
||||
, python3
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
git,
|
||||
python3,
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
@ -21,9 +22,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
"sqlalchemy"
|
||||
];
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
||||
|
||||
build-system = with python3.pkgs; [
|
||||
poetry-core
|
||||
@ -52,18 +51,16 @@ python3.pkgs.buildPythonApplication rec {
|
||||
zstandard
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
git
|
||||
] ++ (with python3.pkgs; [
|
||||
jsonschema
|
||||
pytest-mock
|
||||
pytest-unordered
|
||||
pytestCheckHook
|
||||
]);
|
||||
nativeCheckInputs =
|
||||
[ git ]
|
||||
++ (with python3.pkgs; [
|
||||
jsonschema
|
||||
pytest-mock
|
||||
pytest-unordered
|
||||
pytestCheckHook
|
||||
]);
|
||||
|
||||
pythonImportsCheck = [
|
||||
"vunnel"
|
||||
];
|
||||
pythonImportsCheck = [ "vunnel" ];
|
||||
|
||||
disabledTests = [
|
||||
# Compare output
|
||||
|
Loading…
Reference in New Issue
Block a user