nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.apt-repo: disable tests (network required)

Sarah Clark a823ebc5 b440606b

+2 -3
+2 -3
pkgs/development/python-modules/apt-repo/default.nix
··· 5 5 6 6 buildPythonPackage, 7 7 pytestCheckHook, 8 - pythonOlder, 9 8 setuptools, 10 9 }: 11 10 ··· 12 13 pname = "apt-repo"; 13 14 version = "0.5-unstable-2023-09-27"; 14 15 pyproject = true; 15 - disabled = pythonOlder "3.5"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "brennerm"; ··· 22 24 passthru.updateScript = unstableGitUpdater { }; 23 25 24 26 build-system = [ setuptools ]; 25 - nativeBuildInputs = [ pytestCheckHook ]; 27 + 28 + doCheck = false; # All tests require a network connection 26 29 27 30 pythonImportsCheck = [ "apt_repo" ]; 28 31