{ stdenv, buildPythonPackage, fetchPypi , azure-cli-command-modules-nspkg , azure-cli-core }: buildPythonPackage rec { pname = "azure_cli_profile"; version = "2.1.1"; format = "wheel"; src = fetchPypi { inherit pname version format; sha256 = "0bb5b5az7k4ahgdq3pfrhw371i8lr5726wx6vd9ilj98s5xb3xmi"; }; propagatedBuildInputs = [ azure-cli-command-modules-nspkg azure-cli-core ]; doCheck = false; meta = with stdenv.lib; { description = "Microsoft Azure Command-Line Tools Profile Command Module"; homepage = https://github.com/Azure/azure-cli; license = licenses.mit; maintainers = with maintainers; [ stesie ]; }; }