blob: 13c42576bccbe656a82d7d1ffb0f5943f72c2f05 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
azure-core,
buildPythonPackage,
fetchPypi,
isodate,
pythonOlder,
typing-extensions,
setuptools,
}:
buildPythonPackage rec {
pname = "azure-servicebus";
version = "7.14.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "azure_servicebus";
inherit version;
hash = "sha256-qd9vWcZe5BeSN/FrAKlu4W6BzOTiyC4mFoBP57yS+0Y=";
};
build-system = [ setuptools ];
dependencies = [
azure-core
isodate
typing-extensions
];
# Tests require dev-tools
doCheck = false;
pythonImportsCheck = [ "azure.servicebus" ];
meta = with lib; {
description = "Microsoft Azure Service Bus Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_${version}/sdk/servicebus/azure-servicebus/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
};
}
|