codecov-cli: 9.1.1 -> 10.4.0

This commit is contained in:
emaryn
2025-04-25 04:57:52 +08:00
parent b8c6cc2cd5
commit 14d9a48866
+18 -9
View File
@@ -1,22 +1,29 @@
{
fetchPypi,
lib,
python3Packages,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication rec {
pname = "codecov-cli";
version = "9.1.1";
version = "10.4.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-jaljYA2x2nZUOn9vy/CdtxfGjQKHtrtY13WmBdsICTA=";
};
src =
(fetchFromGitHub {
owner = "codecov";
repo = "codecov-cli";
tag = "v${version}";
hash = "sha256-R1GFQ81N/e2OX01oSs8Xs+PM0JKVZofiUPADVdxCzWk=";
fetchSubmodules = true;
}).overrideAttrs
(_: {
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
];
build-system = with python3Packages; [ setuptools ];
pythonRelaxDeps = [
"httpx"
@@ -33,6 +40,8 @@ python3Packages.buildPythonApplication rec {
responses
test-results-parser
tree-sitter
sentry-sdk
wrapt
];
meta = {