pythonPackages.azure-mgmt-apimanagement: init at 0.1.0
This commit is contained in:
parent
4d374c5cdc
commit
c45e9af34c
@ -0,0 +1,31 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||||
|
, azure-common
|
||||||
|
, msrest
|
||||||
|
, msrestazure
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "0.1.0";
|
||||||
|
pname = "azure-mgmt-apimanagement";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "06bqqkn5mx127x1z7ycm6rl8ajxlrmrm2kcdpgkbl4baii1x6iax";
|
||||||
|
extension = "zip";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ azure-common msrest msrestazure ];
|
||||||
|
|
||||||
|
# no tests included
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "azure.common" "azure.mgmt.apimanagement" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Microsoft Azure API Management Client Library for Python";
|
||||||
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jonringer ];
|
||||||
|
};
|
||||||
|
}
|
@ -303,6 +303,8 @@ in {
|
|||||||
|
|
||||||
azure-mgmt-advisor = callPackage ../development/python-modules/azure-mgmt-advisor { };
|
azure-mgmt-advisor = callPackage ../development/python-modules/azure-mgmt-advisor { };
|
||||||
|
|
||||||
|
azure-mgmt-apimanagement = callPackage ../development/python-modules/azure-mgmt-apimanagement { };
|
||||||
|
|
||||||
azure-mgmt-applicationinsights = callPackage ../development/python-modules/azure-mgmt-applicationinsights { };
|
azure-mgmt-applicationinsights = callPackage ../development/python-modules/azure-mgmt-applicationinsights { };
|
||||||
|
|
||||||
azure-mgmt-authorization = callPackage ../development/python-modules/azure-mgmt-authorization { };
|
azure-mgmt-authorization = callPackage ../development/python-modules/azure-mgmt-authorization { };
|
||||||
|
Loading…
Reference in New Issue
Block a user