1{ lib
2, buildPythonPackage
3, fetchPypi
4, azure-common
5, azure-mgmt-core
6, msrestazure
7, pythonOlder
8}:
9
10buildPythonPackage rec {
11 pname = "azure-mgmt-cognitiveservices";
12 version = "13.5.0";
13 format = "setuptools";
14
15 disabled = pythonOlder "3.6";
16
17 src = fetchPypi {
18 inherit pname version;
19 extension = "zip";
20 hash = "sha256-RK8LGbH4J+nN6gnGBUweZgkqUcMrwe9aVtvZtAvFeBU=";
21 };
22
23 propagatedBuildInputs = [
24 msrestazure
25 azure-common
26 azure-mgmt-core
27 ];
28
29 # Module has no tests
30 doCheck = false;
31
32 meta = with lib; {
33 description = "This is the Microsoft Azure Cognitive Services Management Client Library";
34 homepage = "https://github.com/Azure/azure-sdk-for-python";
35 license = licenses.mit;
36 maintainers = with maintainers; [ maxwilson ];
37 };
38}