biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-recoveryservices / default.nix
blob414fcce92ab10e12df4ac2ade8c7235fc84045df
2   lib,
3   azure-common,
4   azure-mgmt-core,
5   buildPythonPackage,
6   fetchPypi,
7   isodate,
8   pythonOlder,
9   typing-extensions,
12 buildPythonPackage rec {
13   pname = "azure-mgmt-recoveryservices";
14   version = "3.0.0";
15   format = "setuptools";
17   disabled = pythonOlder "3.7";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-3yEt+t+8xlnDEjHD4XCqt8IRRNFysPiCaKsPWtjpWII=";
22   };
24   propagatedBuildInputs = [
25     azure-common
26     azure-mgmt-core
27     isodate
28   ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
30   # Module has no tests
31   doCheck = false;
33   pythonImportsCheck = [ "azure.mgmt.recoveryservices" ];
35   meta = with lib; {
36     description = "This is the Microsoft Azure Recovery Services 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-recoveryservices_${version}/sdk/recoveryservices/azure-mgmt-recoveryservices/CHANGELOG.md";
39     license = licenses.mit;
40     maintainers = with maintainers; [ maxwilson ];
41   };