Unverified Commit 39325a4d authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

python312Packages.azure-functions-devops-build: remove (#346391)

parents d97c422a 8a7605d7
Loading
Loading
Loading
Loading
+0 −38
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  jinja2,
  msrest,
  vsts,
}:

buildPythonPackage rec {
  version = "0.0.22";
  format = "setuptools";
  pname = "azure-functions-devops-build";

  src = fetchFromGitHub {
    owner = "Azure";
    repo = "azure-functions-devops-build";
    # rev picked based on pypi release date
    rev = "c8249670acc77333e3de8b21dec60faf7ecf0951";
    sha256 = "1slc7jd92v9q1qg1yacnrpi2a7hi7iw61wzbzfd6wx9q63pw9yqi";
  };

  propagatedBuildInputs = [
    jinja2
    msrest
    vsts
  ];

  # circular dependency with azure-cli-core
  doCheck = false;

  meta = with lib; {
    description = "Integrate Azure Functions with Azure DevOps. Specifically made for the Azure CLI";
    homepage = "https://github.com/Azure/azure-functions-devops-build";
    license = licenses.mit;
    maintainers = [ ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -64,6 +64,7 @@ mapAliases ({
  atsim_potentials = atsim-potentials; # added 2023-10-08
  inherit (super.pkgs) autotrash; # added 2024-09-23
  awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13
  azure-functions-devops-build = throw "azure-functions-devops-build has been removed, because it is abandoned"; # added 2024-10-04
  Babel = babel; # added 2022-05-06
  backports_csv = throw "backports_csv has been removed, since we no longer need to backport to python2"; # added 2023-07-28
  backports_functools_lru_cache = throw "backports_functools_lru_cache has been removed, since we no longer need to backport to python3.2"; # added 2023-07-28
+0 −2
Original line number Diff line number Diff line
@@ -1147,8 +1147,6 @@ self: super: with self; {
  azure-eventhub = callPackage ../development/python-modules/azure-eventhub { };
  azure-functions-devops-build = callPackage ../development/python-modules/azure-functions-devops-build { };
  azure-graphrbac = callPackage ../development/python-modules/azure-graphrbac { };
  azure-identity = callPackage ../development/python-modules/azure-identity { };