mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
pythonPackages.azure-mgmt-reservations: init at 0.3.2
This commit is contained in:
parent
b7a690c164
commit
e1f894b0de
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -378,6 +378,8 @@ in {
|
|||||||
|
|
||||||
azure-mgmt-relay = callPackage ../development/python-modules/azure-mgmt-relay { };
|
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-resource = callPackage ../development/python-modules/azure-mgmt-resource { };
|
||||||
|
|
||||||
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };
|
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };
|
||||||
|
Loading…
Reference in New Issue
Block a user