Unverified Commit 47c967b0 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.pip-api: disable failing tests (#515798)

parents 953fd12c fe9f2324
Loading
Loading
Loading
Loading
+10 −8
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
  virtualenv,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pip-api";
  version = "0.0.34";
  pyproject = true;
@@ -17,13 +17,13 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "di";
    repo = "pip-api";
    tag = version;
    tag = "v${finalAttrs.version}";
    hash = "sha256-nmCP4hp+BsD80OBjerOu+QTBBExGHvn/v19od4V3ncI=";
  };

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [ pip ];
  dependencies = [ pip ];

  nativeCheckInputs = [
    pretend
@@ -40,13 +40,15 @@ buildPythonPackage rec {
    "test_invoke_install"
    "test_invoke_uninstall"
    "test_isolation"
    # Tests fails on hydra
    "test_parse_requirements_editable"
  ];

  meta = {
    description = "Importable pip API";
    homepage = "https://github.com/di/pip-api";
    changelog = "https://github.com/di/pip-api/blob/${version}/CHANGELOG";
    license = with lib.licenses; [ mit ];
    homepage = "https://github.com/di/pip-api/";
    changelog = "https://github.com/di/pip-api/blob/${finalAttrs.src.tag}/CHANGELOG";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})