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