nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at r-updates 42 lines 973 B view raw
1{ 2 lib, 3 azure-core, 4 buildPythonPackage, 5 fetchPypi, 6 isodate, 7 typing-extensions, 8 setuptools, 9}: 10 11buildPythonPackage rec { 12 pname = "azure-servicebus"; 13 version = "7.14.3"; 14 pyproject = true; 15 16 src = fetchPypi { 17 pname = "azure_servicebus"; 18 inherit version; 19 hash = "sha256-cKYzhFV67AvucndA57Jd7Snp5wG3dhF2RXf9dAI4lAI="; 20 }; 21 22 build-system = [ setuptools ]; 23 24 dependencies = [ 25 azure-core 26 isodate 27 typing-extensions 28 ]; 29 30 # Tests require dev-tools 31 doCheck = false; 32 33 pythonImportsCheck = [ "azure.servicebus" ]; 34 35 meta = { 36 description = "Microsoft Azure Service Bus Client Library"; 37 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus"; 38 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-servicebus_${version}/sdk/servicebus/azure-servicebus/CHANGELOG.md"; 39 license = lib.licenses.mit; 40 maintainers = with lib.maintainers; [ maxwilson ]; 41 }; 42}