{ stdenv, buildPythonPackage, fetchPypi , azure-common , azure-mgmt-nspkg , msrestazure }: buildPythonPackage rec { pname = "azure-mgmt-batchai"; version = "2.0.0"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "10x6l8y8z0la4gdvykdk33ns05wpdhimm3i0cvdiq06mjw7hp1zi"; }; propagatedBuildInputs = [ azure-common azure-mgmt-nspkg msrestazure ]; doCheck = false; meta = with stdenv.lib; { description = "Microsoft Azure Batch AI Management Client Library for Python"; homepage = https://github.com/Azure/azure-sdk-for-python; license = licenses.mit; maintainers = with maintainers; [ stesie ]; }; }