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