Skip to content

Commit d66dc0e

Browse files
python312Packages.microsoft-kiota-http: 1.3.4 -> 1.9.1
1 parent b66beb0 commit d66dc0e

File tree

1 file changed

+11
-9
lines changed
  • pkgs/development/python-modules/microsoft-kiota-http

1 file changed

+11
-9
lines changed

pkgs/development/python-modules/microsoft-kiota-http/default.nix

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
lib,
33
buildPythonPackage,
44
fetchFromGitHub,
5-
flit-core,
5+
poetry-core,
66
httpx,
77
microsoft-kiota-abstractions,
88
opentelemetry-api,
@@ -16,19 +16,21 @@
1616

1717
buildPythonPackage rec {
1818
pname = "microsoft-kiota-http";
19-
version = "1.3.4";
19+
version = "1.9.1";
2020
pyproject = true;
2121

22-
disabled = pythonOlder "3.8";
22+
disabled = pythonOlder "3.9";
2323

2424
src = fetchFromGitHub {
2525
owner = "microsoft";
26-
repo = "kiota-http-python";
27-
tag = "v${version}";
28-
hash = "sha256-0hntB9GSDE05l/ghWTzMrX1MAPdWNHJVIQFpskraDV8=";
26+
repo = "kiota-python";
27+
tag = "microsoft-kiota-http-v${version}";
28+
hash = "sha256-ESRnI8prXG1h5H5RVD4eOQ1sQYSEMMLVHSk8yhzFGVw=";
2929
};
3030

31-
build-system = [ flit-core ];
31+
sourceRoot = "source/packages/http/httpx/";
32+
33+
build-system = [ poetry-core ];
3234

3335
dependencies = [
3436
httpx
@@ -48,8 +50,8 @@ buildPythonPackage rec {
4850

4951
meta = with lib; {
5052
description = "HTTP request adapter implementation for Kiota clients for Python";
51-
homepage = "https://github.com/microsoft/kiota-http-python";
52-
changelog = "https://github.com/microsoft/kiota-http-python/blob/${version}/CHANGELOG.md";
53+
homepage = "https://github.com/microsoft/kiota-python/tree/main/packages/http/httpx";
54+
changelog = "https://github.com/microsoft/kiota-python/releases/tag/microsoft-kiota-http-v${version}";
5355
license = licenses.mit;
5456
maintainers = with maintainers; [ fab ];
5557
};

0 commit comments

Comments
 (0)