Unverified Commit 360726d4 authored by Sefa Eyeoglu's avatar Sefa Eyeoglu Committed by GitHub
Browse files

python312Packages.codecov: drop (#350862)

parents 41dea553 2830c1b5
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -5,7 +5,6 @@
  setuptools,
  wheel,
  black,
  codecov,
  coverage,
  librosa,
  numpy,
@@ -34,7 +33,6 @@ buildPythonPackage rec {

  propagatedBuildInputs = [
    black
    codecov
    coverage
    librosa
    numpy
+0 −53
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  coverage,
  ddt,
  fetchFromGitHub,
  mock,
  pytestCheckHook,
  requests,
}:

buildPythonPackage rec {
  pname = "codecov";
  version = "2.1.13";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "codecov";
    repo = "codecov-python";
    rev = "refs/tags/v${version}";
    sha256 = "sha256-cZEpAw8uv/XGiGzdBZ9MnabNaTP0did2GT+BkKMJM/E=";
  };

  propagatedBuildInputs = [
    requests
    coverage
  ];

  nativeCheckInputs = [
    ddt
    mock
    pytestCheckHook
  ];

  pytestFlagsArray = [ "tests/test.py" ];

  disabledTests = [
    # No git repo available and network
    "test_bowerrc_none"
    "test_prefix"
    "test_send"
  ];

  pythonImportsCheck = [ "codecov" ];

  meta = with lib; {
    description = "Python report uploader for Codecov";
    mainProgram = "codecov";
    homepage = "https://codecov.io/";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };
}
+0 −3
Original line number Diff line number Diff line
@@ -29,7 +29,6 @@
  simplejson,
  traits,
  xvfbwrapper,
  codecov,
  # other dependencies
  which,
  bash,
@@ -56,7 +55,6 @@ buildPythonPackage rec {
      --replace "/usr/bin/env bash" "${bash}/bin/bash"
  '';


  pythonRelaxDeps = [ "traits" ];

  propagatedBuildInputs = [
@@ -83,7 +81,6 @@ buildPythonPackage rec {

  nativeCheckInputs = [
    pybids
    codecov
    glibcLocales
    mock
    pytest
+0 −2
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@
  aiohttp,
  boto3,
  buildPythonPackage,
  codecov,
  fetchFromGitHub,
  flake8,
  flask-sockets,
@@ -50,7 +49,6 @@ buildPythonPackage rec {
  ];

  nativeCheckInputs = [
    codecov
    flake8
    flask-sockets
    moto
+0 −2
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@
  fetchFromGitHub,
  pytestCheckHook,
  aiohttp,
  codecov,
  flake8,
  pytest,
  pytest-asyncio,
@@ -25,7 +24,6 @@ buildPythonPackage rec {

  checkInputs = [
    aiohttp
    codecov
    flake8
    pytest
    pytest-asyncio
Loading