Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-recoveryservicesbackup / default.nix
blob7f8ab5b19a4870099d35dd7d945cb3bb21f620a7
1 { lib
2 , azure-common
3 , azure-mgmt-core
4 , buildPythonPackage
5 , fetchPypi
6 , isodate
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-recoveryservicesbackup";
12   version = "9.0.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.8";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-H/SsO/DnHXSsSyejYX7BFem1GqPh20DRGecrYVkIu1E=";
20   };
22   propagatedBuildInputs = [
23     azure-common
24     azure-mgmt-core
25     isodate
26   ];
28   # Module has no tests
29   doCheck = false;
31   pythonImportsCheck = [
32     "azure.mgmt.recoveryservicesbackup"
33   ];
35   meta = with lib; {
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 = licenses.mit;
40     maintainers = with maintainers; [ maxwilson ];
41   };