Unverified Commit e14e7410 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python313Packages.huisbaasje-client: drop (#406655)

parents 3284db58 29d745cc
Loading
Loading
Loading
Loading
+0 −36
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  pythonOlder,
  fetchFromGitHub,
  aiohttp,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "huisbaasje-client";
  version = "0.1.0";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "dennisschroer";
    repo = "huisbaasje-client";
    rev = "v${version}";
    sha256 = "113aymffyz1nki3a43j5cyj87qa0762j38qlz0wd5px7diwjxsfl";
  };

  propagatedBuildInputs = [ aiohttp ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "huisbaasje.huisbaasje" ];

  meta = with lib; {
    description = "Client for Huisbaasje";
    homepage = "https://github.com/dennisschroer/huisbaasje-client";
    license = licenses.asl20;
    maintainers = with maintainers; [ dotlambda ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -322,6 +322,7 @@ mapAliases ({
  htmllaundry = throw "htmllaundry has been removed because it is abandoned"; # added 2024-06-04
  HTSeq = htseq; # added 2023-02-19
  hug = throw "hug was marked broken since 2021 and has not established compatibility with newer dependency versions. It has therefore been removed."; # added 2024-11-15
  huisbaasje-client = throw "huisbaasje-client has been removed because it was replaced with energyflip-client"; # added 2025-05-12
  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
+0 −2
Original line number Diff line number Diff line
@@ -6494,8 +6494,6 @@ self: super: with self; {
  huggingface-hub = callPackage ../development/python-modules/huggingface-hub { };
  huisbaasje-client = callPackage ../development/python-modules/huisbaasje-client { };
  human-readable = callPackage ../development/python-modules/human-readable { };
  humanfriendly = callPackage ../development/python-modules/humanfriendly { };