linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-hanaonazure / default.nix
blobc4453e8c0c11d708d9d33ce4d21a5e9bb0535c9a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-nspkg
8 , isPy3k
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-hanaonazure";
13   version = "0.15.0";
15   src = fetchPypi {
16     inherit pname version;
17     extension = "zip";
18     sha256 = "f5699cd2f6ad09555c3f1a75c8703e12db76bbbb7ec8b621dcb948d4fc9829a5";
19   };
21   propagatedBuildInputs = [
22     msrest
23     msrestazure
24     azure-common
25   ] ++ lib.optionals (!isPy3k) [
26     azure-mgmt-nspkg
27   ];
29   # has no tests
30   doCheck = false;
32   meta = with lib; {
33     description = "This is the Microsoft Azure SAP Hana on Azure Management Client Library";
34     homepage = "https://github.com/Azure/azure-sdk-for-python";
35     license = licenses.mit;
36     maintainers = with maintainers; [ maxwilson ];
37   };