Commit 67390d0b authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.microsoft-kiota-abstractions: init at 1.2.0

Abstractions library for Kiota generated Python clients

https://github.com/microsoft/kiota-abstractions-python
parent 047bc338
Loading
Loading
Loading
Loading
+55 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, opentelemetry-api
, opentelemetry-sdk
, pytest-asyncio
, pytest-mock
, pytestCheckHook
, pythonOlder
, std-uritemplate
}:

buildPythonPackage rec {
  pname = "microsoft-kiota-abstractions";
  version = "1.2.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "microsoft";
    repo = "kiota-abstractions-python";
    rev = "refs/tags/v${version}";
    hash = "sha256-ubDbpQhrqoyiBNne15nlO44lXg2wG+wrL8EJasMUocc=";
  };

  nativeBuildInputs = [
    flit-core
  ];

  propagatedBuildInputs = [
    opentelemetry-api
    opentelemetry-sdk
    std-uritemplate
  ];

  nativeCheckInputs = [
    pytest-asyncio
    pytest-mock
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "kiota_abstractions"
  ];

  meta = with lib; {
    description = "Abstractions library for Kiota generated Python clients";
    homepage = "https://github.com/microsoft/kiota-abstractions-python";
    changelog = "https://github.com/microsoft/kiota-abstractions-python/blob/${version}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -7180,6 +7180,8 @@ self: super: with self; {
  microdata = callPackage ../development/python-modules/microdata { };
  microsoft-kiota-abstractions = callPackage ../development/python-modules/microsoft-kiota-abstractions { };
  midiutil = callPackage ../development/python-modules/midiutil { };
  mido = callPackage ../development/python-modules/mido { };