With the help of @NirGraham, it seems you have to/should explicitly define the namespace of the data being referenced. In the above example, the following function definition fixed the issue:
fn_docalc <- function(x){
tmp <- myPkgName::measurements
tmp$value <- tmp$value * x
tmp
}
Further, my actual use case was using the get() function instead of directly referencing the variable. The equivalent in this case would be tmp <- get("measurements"). The fix to that was to include the pos argument like: tmp <- get("measurements", pos = "package:myPkgName")