I think the name has been removed in this commit :
Deprecate non-"matrix" names in laplacian.
Use laplacian_matrix, directed_laplacian_matrix, and normalized_laplacian_matrix only and deprecate other name aliases.
The lines that he changed from networkx/linalg/laplacianmatrix.pyinclude
-combinatorial_laplacian=laplacian_matrix
-generalized_laplacian=normalized_laplacian_matrix
-normalized_laplacian=normalized_laplacian_matrix
-laplacian=laplacian_matrix
So, I think you can use normalized_laplacian_matrixinstead:
>>> normalized_laplacian_matrix(G)
<1000x1000 sparse matrix of type '<type 'numpy.float64'>'
with 11000 stored elements in Compressed Sparse Row format>