pythonPackages.azure-mgmt-cdn: init at 3.1.0
This commit is contained in:
parent
f638c31205
commit
6463d3c0c8
38
pkgs/development/python-modules/azure-mgmt-cdn/default.nix
Normal file
38
pkgs/development/python-modules/azure-mgmt-cdn/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, msrest
|
||||||
|
, msrestazure
|
||||||
|
, azure-common
|
||||||
|
, azure-mgmt-nspkg
|
||||||
|
, isPy3k
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "azure-mgmt-cdn";
|
||||||
|
version = "3.1.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
extension = "zip";
|
||||||
|
sha256 = "0cdbe0914aec544884ef681e31950efa548d9bec6d6dc354e00c3dbdab9e76e3";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 CDN Management Client Library";
|
||||||
|
homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-cdn;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ mwilsoninsight ];
|
||||||
|
};
|
||||||
|
}
|
@ -290,6 +290,8 @@ in {
|
|||||||
|
|
||||||
azure-mgmt-billing = callPackage ../development/python-modules/azure-mgmt-billing { };
|
azure-mgmt-billing = callPackage ../development/python-modules/azure-mgmt-billing { };
|
||||||
|
|
||||||
|
azure-mgmt-cdn = callPackage ../development/python-modules/azure-mgmt-cdn { };
|
||||||
|
|
||||||
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
||||||
|
|
||||||
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user