pythonPackages.azure-mgmt-reservations: init at 0.3.2

This commit is contained in:
Max Wilson 2019-04-29 18:58:55 -04:00 committed by Wael M. Nasreddine
parent b7a690c164
commit e1f894b0de
No known key found for this signature in database
GPG key ID: FD437548E0BF0F5F
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
, azure-mgmt-nspkg
, isPy3k
}:
buildPythonPackage rec {
pname = "azure-mgmt-reservations";
version = "0.3.2";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0nksxjh5kh09dr0zw667fg8mzik4ymvfq3dipwag6pynbqr9ls4l";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Reservations Client Library";
homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-reservations;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

View file

@ -378,6 +378,8 @@ in {
azure-mgmt-relay = callPackage ../development/python-modules/azure-mgmt-relay { };
azure-mgmt-reservations = callPackage ../development/python-modules/azure-mgmt-reservations { };
azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };