Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-batchai / default.nix
blob0c005c3ea3c2bc151f154da5bb89d5f76dd1303d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , azure-common
5 , azure-mgmt-core
6 , azure-mgmt-nspkg
7 , msrestazure
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-batchai";
12   version = "2.0.0";
14   src = fetchPypi {
15     inherit pname version;
16     extension = "zip";
17     sha256 = "f1870b0f97d5001cdb66208e5a236c9717a0ed18b34dbfdb238a828f3ca2a683";
18   };
20   propagatedBuildInputs = [
21     msrestazure
22     azure-common
23     azure-mgmt-core
24     azure-mgmt-nspkg
25  ];
27   pythonNamespaces = [ "azure.mgmt" ];
29   # has no tests
30   doCheck = false;
32   meta = with lib; {
33     description = "This is the Microsoft Azure Batch AI Management Client Library";
34     homepage = "https://github.com/Azure/azure-sdk-for-python";
35     license = licenses.mit;
36     maintainers = with maintainers; [ maxwilson ];
37   };