You would have to add another calculation:
PriceWithShipping = [Price] + [Shipping]
Then use the PriceWithShipping as the item price when passing it to paypal.
Paypal requires that the sum of the individual prices equal the TotalPrice. So if you account for the shipping in the TotalPrice then you also have to account for it in the individual item price when passing it to paypal.