codecov-cli: 9.1.1 -> 10.4.0

emaryn 14d9a488 b8c6cc2c

+18 -9
+18 -9
pkgs/by-name/co/codecov-cli/package.nix
··· 1 { 2 - fetchPypi, 3 lib, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonApplication rec { 8 pname = "codecov-cli"; 9 - version = "9.1.1"; 10 pyproject = true; 11 12 - src = fetchPypi { 13 - inherit pname version; 14 - hash = "sha256-jaljYA2x2nZUOn9vy/CdtxfGjQKHtrtY13WmBdsICTA="; 15 - }; 16 17 - build-system = with python3Packages; [ 18 - setuptools 19 - ]; 20 21 pythonRelaxDeps = [ 22 "httpx" ··· 33 responses 34 test-results-parser 35 tree-sitter 36 ]; 37 38 meta = {
··· 1 { 2 lib, 3 python3Packages, 4 + fetchFromGitHub, 5 }: 6 7 python3Packages.buildPythonApplication rec { 8 pname = "codecov-cli"; 9 + version = "10.4.0"; 10 pyproject = true; 11 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 + }); 25 26 + build-system = with python3Packages; [ setuptools ]; 27 28 pythonRelaxDeps = [ 29 "httpx" ··· 40 responses 41 test-results-parser 42 tree-sitter 43 + sentry-sdk 44 + wrapt 45 ]; 46 47 meta = {