pythonPackages.azure-mgmt-cognitiveservices: init at 4.0.0

wip/yesman
Max Wilson 5 years ago committed by Wael M. Nasreddine
parent 6463d3c0c8
commit 55deab5467
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
  1. 34
      pkgs/development/python-modules/azure-mgmt-cognitiveservices/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, azure-mgmt-nspkg
, msrestazure
}:
buildPythonPackage rec {
pname = "azure-mgmt-cognitiveservices";
version = "4.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "05zbgy1d6mschqv6y14byr4nwdnv48x9skx4rbsbz1fcqqx3j2sd";
};
propagatedBuildInputs = [
msrestazure
azure-common
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Cognitive Services Management Client Library";
homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-cognitiveservices;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

@ -292,6 +292,8 @@ in {
azure-mgmt-cdn = callPackage ../development/python-modules/azure-mgmt-cdn { };
azure-mgmt-cognitiveservices = callPackage ../development/python-modules/azure-mgmt-cognitiveservices { };
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };

Loading…
Cancel
Save