Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-cognitiveservices / default.nix
blob25dfe383e35dd589a21c93f8ef10a49191a6008b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , azure-common
5 , azure-mgmt-core
6 , msrestazure
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-cognitiveservices";
12   version = "13.5.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit pname version;
19     extension = "zip";
20     hash = "sha256-RK8LGbH4J+nN6gnGBUweZgkqUcMrwe9aVtvZtAvFeBU=";
21   };
23   propagatedBuildInputs = [
24     msrestazure
25     azure-common
26     azure-mgmt-core
27   ];
29   # Module has no tests
30   doCheck = false;
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   };