forked from mirrors/nixpkgs
python3Packages.azure-mgmt-botservice: init at 0.2.0
This commit is contained in:
parent
c30c883484
commit
8354b5c7a9
|
@ -0,0 +1,31 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||
, azure-common
|
||||
, msrest
|
||||
, msrestazure
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.2.0";
|
||||
pname = "azure-mgmt-botservice";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "10sxllwvybjlp35h5mjdxhkw2wzpl4b03i08p4jnv8cswrc8h7dj";
|
||||
extension = "zip";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ azure-common msrest msrestazure ];
|
||||
|
||||
# no tests included
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "azure.common" "azure.mgmt.botservice" ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -317,6 +317,8 @@ in {
|
|||
|
||||
azure-mgmt-billing = callPackage ../development/python-modules/azure-mgmt-billing { };
|
||||
|
||||
azure-mgmt-botservice = callPackage ../development/python-modules/azure-mgmt-botservice { };
|
||||
|
||||
azure-mgmt-cdn = callPackage ../development/python-modules/azure-mgmt-cdn { };
|
||||
|
||||
azure-mgmt-cognitiveservices = callPackage ../development/python-modules/azure-mgmt-cognitiveservices { };
|
||||
|
|
Loading…
Reference in a new issue