Unverified Commit 646456a7 authored by Jon Seager's avatar Jon Seager
Browse files

snapcraft: run `nixfmt-rfc-style`

parent 57cf148d
Loading
Loading
Loading
Loading
+18 −19
Original line number Diff line number Diff line
@@ -107,9 +107,7 @@ python3Packages.buildPythonApplication rec {
    tinydb
  ];

  nativeBuildInputs = with python3Packages; [
    setuptools
  ];
  nativeBuildInputs = with python3Packages; [ setuptools ];

  pythonRelaxDeps = [
    "docutils"
@@ -122,7 +120,9 @@ python3Packages.buildPythonApplication rec {
    wrapProgram $out/bin/snapcraft --prefix PATH : ${squashfsTools}/bin
  '';

  nativeCheckInputs = with python3Packages; [
  nativeCheckInputs =
    with python3Packages;
    [
      pytest-check
      pytest-cov
      pytest-mock
@@ -130,7 +130,8 @@ python3Packages.buildPythonApplication rec {
      pytestCheckHook
      responses
      setuptools
  ] ++ [
    ]
    ++ [
      git
      squashfsTools
    ];
@@ -164,9 +165,7 @@ python3Packages.buildPythonApplication rec {
    "test_snap_command_fallback"
    "test_validate_architectures_supported"
    "test_validate_architectures_unsupported"
  ] ++ lib.optionals stdenv.isAarch64 [
    "test_load_project"
  ];
  ] ++ lib.optionals stdenv.isAarch64 [ "test_load_project" ];

  disabledTestPaths = [
    "tests/unit/commands/test_remote.py"