{,python31{1,2}Packages}.hydra-check: remove

This commit is contained in:
Doron Behar 2024-11-27 09:20:02 +02:00
parent 7dd7251bcb
commit 2307b8f76f
4 changed files with 1 additions and 49 deletions

View file

@ -1,45 +0,0 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
poetry-core,
requests,
beautifulsoup4,
colorama,
}:
buildPythonPackage rec {
pname = "hydra-check";
version = "1.3.5";
format = "pyproject";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "nix-community";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-fRSC+dfZZSBBeN6YidXRKc1kPUbBKz5OiFSHGOSikgI=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
colorama
requests
beautifulsoup4
];
pythonImportsCheck = [ "hydra_check" ];
meta = with lib; {
description = "check hydra for the build status of a package";
mainProgram = "hydra-check";
homepage = "https://github.com/nix-community/hydra-check";
license = licenses.mit;
maintainers = with maintainers; [
makefu
artturin
];
};
}

View file

@ -9489,8 +9489,6 @@ with pkgs;
hydra = callPackage ../by-name/hy/hydra/package.nix { nix = nixVersions.nix_2_24; };
hydra-check = with python3.pkgs; toPythonApplication hydra-check;
icu-versions = callPackages ../development/libraries/icu { };
inherit (icu-versions)
icu60

View file

@ -274,6 +274,7 @@ mapAliases ({
htmllaundry = throw "htmllaundry has been removed because it is abandoned"; # added 2024-06-04
HTSeq = htseq; # added 2023-02-19
hyperkitty = throw "Please use pkgs.mailmanPackages.hyperkitty"; # added 2022-04-29
hydra-check = throw "The Python package hydra-check was removed in favor of the top-level rust based pkgs.hydra-check"; # added 2022-04-29
ihatemoney = throw "ihatemoney was removed because it is no longer maintained downstream"; # added 2023-04-08
IMAPClient = imapclient; # added 2021-10-28
imdbpy = throw "imdbpy has been renamed to cinemagoer"; # added 2022-08-08

View file

@ -6065,8 +6065,6 @@ self: super: with self; {
hydra-core = callPackage ../development/python-modules/hydra-core { };
hydra-check = callPackage ../development/python-modules/hydra-check { };
hydrawiser = callPackage ../development/python-modules/hydrawiser { };
hydrogram = callPackage ../development/python-modules/hydrogram { };