nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 42 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-recoveryservicesbackup"; 13 version = "10.0.0"; 14 pyproject = true; 15 16 src = fetchPypi { 17 pname = "azure_mgmt_recoveryservicesbackup"; 18 inherit version; 19 hash = "sha256-DKw8a4cjBjWbvEdQHRhLcAhGzlSPk/nA9u99HRC3I+k="; 20 }; 21 22 build-system = [ setuptools ]; 23 24 dependencies = [ 25 azure-common 26 azure-mgmt-core 27 isodate 28 ]; 29 30 # Module has no tests 31 doCheck = false; 32 33 pythonImportsCheck = [ "azure.mgmt.recoveryservicesbackup" ]; 34 35 meta = { 36 description = "This is the Microsoft Azure Recovery Services Backup Management Client Library"; 37 homepage = "https://github.com/Azure/azure-sdk-for-python"; 38 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-recoveryservicesbackup_${version}/sdk/recoveryservices/azure-mgmt-recoveryservicesbackup/CHANGELOG.md"; 39 license = lib.licenses.mit; 40 maintainers = with lib.maintainers; [ maxwilson ]; 41 }; 42}