File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed
pkgs/by-name/co/codecov-cli Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 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"
23+ "responses"
24+ "tree-sitter"
25+ ] ;
26+
27+ dependencies = with python3Packages ; [
28+ click
29+ httpx
30+ ijson
31+ pyyaml
32+ regex
33+ responses
34+ test-results-parser
35+ tree-sitter
36+ ] ;
37+
38+ meta = {
39+ description = "Codecov Command Line Interface" ;
40+ homepage = "https://github.com/codecov/codecov-cli" ;
41+ license = lib . licenses . asl20 ;
42+ maintainers = with lib . maintainers ; [ veehaitch ] ;
43+ } ;
44+ }
You can’t perform that action at this time.
0 commit comments