nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 47 lines 1.1 kB view raw
1{ 2 lib, 3 azure-common, 4 azure-mgmt-core, 5 buildPythonPackage, 6 fetchPypi, 7 isodate, 8 setuptools, 9}: 10 11buildPythonPackage rec { 12 pname = "azure-mgmt-appconfiguration"; 13 version = "5.0.0"; 14 pyproject = true; 15 16 src = fetchPypi { 17 pname = "azure_mgmt_appconfiguration"; 18 inherit version; 19 hash = "sha256-+PD4G3kNHtd7vAUuzc97EwkfrYixDB8/RxAA29nCCXc="; 20 }; 21 22 build-system = [ setuptools ]; 23 24 dependencies = [ 25 azure-common 26 azure-mgmt-core 27 isodate 28 ]; 29 30 # no tests included 31 doCheck = false; 32 33 pythonNamespaces = [ "azure.mgmt" ]; 34 35 pythonImportsCheck = [ 36 "azure.common" 37 "azure.mgmt.appconfiguration" 38 ]; 39 40 meta = { 41 description = "Microsoft Azure App Configuration Management Client Library for Python"; 42 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/appconfiguration/azure-mgmt-appconfiguration"; 43 changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-appconfiguration_${version}/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md"; 44 license = lib.licenses.mit; 45 maintainers = [ ]; 46 }; 47}