codecov-cli: 9.1.1 -> 10.4.0

emaryn 14d9a488 b8c6cc2c

+18 -9
+18 -9
pkgs/by-name/co/codecov-cli/package.nix
··· 1 1 { 2 - fetchPypi, 3 2 lib, 4 3 python3Packages, 4 + fetchFromGitHub, 5 5 }: 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "codecov-cli"; 9 - version = "9.1.1"; 9 + version = "10.4.0"; 10 10 pyproject = true; 11 11 12 - src = fetchPypi { 13 - inherit pname version; 14 - hash = "sha256-jaljYA2x2nZUOn9vy/CdtxfGjQKHtrtY13WmBdsICTA="; 15 - }; 12 + src = 13 + (fetchFromGitHub { 14 + owner = "codecov"; 15 + repo = "codecov-cli"; 16 + tag = "v${version}"; 17 + hash = "sha256-R1GFQ81N/e2OX01oSs8Xs+PM0JKVZofiUPADVdxCzWk="; 18 + fetchSubmodules = true; 19 + }).overrideAttrs 20 + (_: { 21 + GIT_CONFIG_COUNT = 1; 22 + GIT_CONFIG_KEY_0 = "url.https://github.com/.insteadOf"; 23 + GIT_CONFIG_VALUE_0 = "git@github.com:"; 24 + }); 16 25 17 - build-system = with python3Packages; [ 18 - setuptools 19 - ]; 26 + build-system = with python3Packages; [ setuptools ]; 20 27 21 28 pythonRelaxDeps = [ 22 29 "httpx" ··· 33 40 responses 34 41 test-results-parser 35 42 tree-sitter 43 + sentry-sdk 44 + wrapt 36 45 ]; 37 46 38 47 meta = {