11 buildPythonPackage rec {
14 format = "setuptools";
16 src = fetchFromGitHub {
18 repo = "codecov-python";
19 rev = "refs/tags/v${version}";
20 sha256 = "sha256-cZEpAw8uv/XGiGzdBZ9MnabNaTP0did2GT+BkKMJM/E=";
23 propagatedBuildInputs = [
34 pytestFlagsArray = [ "tests/test.py" ];
37 # No git repo available and network
43 pythonImportsCheck = [ "codecov" ];
46 description = "Python report uploader for Codecov";
47 mainProgram = "codecov";
48 homepage = "https://codecov.io/";
49 license = licenses.asl20;
50 maintainers = with maintainers; [ fab ];