alvr: 20.11.1 -> 20.12.1 (#374869)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-batchai / default.nix
blob0fa160b6adc0009406c5eee56adad099e63fd7f8
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   azure-common,
6   azure-mgmt-core,
7   azure-mgmt-nspkg,
8   msrestazure,
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-batchai";
13   version = "2.0.0";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     extension = "zip";
19     sha256 = "f1870b0f97d5001cdb66208e5a236c9717a0ed18b34dbfdb238a828f3ca2a683";
20   };
22   propagatedBuildInputs = [
23     msrestazure
24     azure-common
25     azure-mgmt-core
26     azure-mgmt-nspkg
27   ];
29   pythonNamespaces = [ "azure.mgmt" ];
31   # has no tests
32   doCheck = false;
34   meta = with lib; {
35     description = "This is the Microsoft Azure Batch AI Management Client Library";
36     homepage = "https://github.com/Azure/azure-sdk-for-python";
37     license = licenses.mit;
38     maintainers = with maintainers; [ maxwilson ];
39   };