I wouldn't imagine such a thing would work. This is because a module is essentially a list of code (normally functions) in which other scripts may reference by requiring the module.
For example, in Python if you would want to use various math tools such as sqrt, you would import the module to save yourself from having to define all of those functions.
Essentially what I'm trying to day is that what you're trying to do doesn't entirely make sense. Because the script in which would use a module would not have the other module to define whatever functions you would use in the first module.
I'm sorry I'm really trying to explain this in a way in which tells you why but I don't believe I'm doing a very great job...
In summary,
you might as well just put everything in the 2nd module, in the first module. As it wouldn't make sense to do what you're trying to do.