nixos/java: No bashisms in `environment.shellInit` script (#294121)
[NixPkgs.git] / pkgs / development / python-modules / azure-servicebus / default.nix
blob997d52e1289796f0d498bfdd38dc4137a1787601
2   lib,
3   azure-core,
4   buildPythonPackage,
5   fetchPypi,
6   isodate,
7   pythonOlder,
8   typing-extensions,
9   setuptools,
12 buildPythonPackage rec {
13   pname = "azure-servicebus";
14   version = "7.12.3";
15   pyproject = true;
17   disabled = pythonOlder "3.8";
19   src = fetchPypi {
20     pname = "azure_servicebus";
21     inherit version;
22     hash = "sha256-PwdZcxrSIRxo60sh5byimCf31v8Ccr3H7vEDwcE/gyI=";
23   };
25   build-system = [ setuptools ];
27   dependencies = [
28     azure-core
29     isodate
30     typing-extensions
31   ];
33   # Tests require dev-tools
34   doCheck = false;
36   pythonImportsCheck = [ "azure.servicebus" ];
38   meta = with lib; {
39     description = "Microsoft Azure Service Bus Client Library";
40     homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus";
41     changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_${version}/sdk/servicebus/azure-servicebus/CHANGELOG.md";
42     license = licenses.mit;
43     maintainers = with maintainers; [ maxwilson ];
44   };