biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / azure-servicebus / default.nix
blob6e622d51794d0fe3612570336db290e758ca5ed6
2   lib,
3   azure-common,
4   azure-core,
5   buildPythonPackage,
6   fetchPypi,
7   isodate,
8   msrest,
9   pythonOlder,
10   typing-extensions,
11   uamqp,
14 buildPythonPackage rec {
15   pname = "azure-servicebus";
16   version = "7.12.2";
17   format = "setuptools";
19   disabled = pythonOlder "3.7";
21   src = fetchPypi {
22     inherit pname version;
23     hash = "sha256-pqPF957VvvEB2ePjyYahA7IA4mxJU8R6UvVSx1fkXso=";
24   };
26   propagatedBuildInputs = [
27     azure-common
28     azure-core
29     isodate
30     msrest
31     typing-extensions
32     uamqp
33   ];
35   # Tests require dev-tools
36   doCheck = false;
38   pythonImportsCheck = [ "azure.servicebus" ];
40   meta = with lib; {
41     description = "Microsoft Azure Service Bus Client Library";
42     homepage = "https://github.com/Azure/azure-sdk-for-python";
43     changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_${version}/sdk/servicebus/azure-servicebus/CHANGELOG.md";
44     license = licenses.mit;
45     maintainers = with maintainers; [ maxwilson ];
46   };