Commit 06274f0d authored by Jörg Thalheim's avatar Jörg Thalheim
Browse files

codecov-cli: fix fetcher now using structured attrs

those environment variables were no longer present.
parent e12e33eb
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -18,9 +18,11 @@ python3Packages.buildPythonApplication rec {
      fetchSubmodules = true;
    }).overrideAttrs
      (_: {
        env = {
          GIT_CONFIG_COUNT = 1;
          GIT_CONFIG_KEY_0 = "url.https://github.com/.insteadOf";
          GIT_CONFIG_VALUE_0 = "git@github.com:";
        };
      });

  build-system = with python3Packages; [ setuptools ];