馃悶 bug report
Affected Rule
I think this is likely a bug with the py_library rule, could potentially be something to do with a pip rule though.
Description
I'm trying to copy PyPI packages to a specific folder for putting on an OCI image. We're creating an Azure Function App and it's particular about how it runs the image, and so it's not finding the PyPI packages in the bazel runfiles tree (also it overrides the python path, so we couldn't just set that).
I've solved most of this by just copying the @third_party_python_deps//package:pkg and @third_party_python_deps//package:dist_info into the /usr/local/lib/python3.10/ folder on our image. However, we're getting errors because it cannot find files which are within a directory starting with an underscore. For us, it's cryptography/hazmat/bindings/_rust/*. I also noticed that those files do not show up in a bazel cquery --output=files @third_party_python_deps//cryptography:pkg.
馃敩 Minimal Reproduction
Add cryptography as a third party PyPI dependency, then run bazel cquery --output=files @third_party_python_deps//cryptography:pkg. This should show most of the package's files, except the ones in external/third_party_python_deps_cryptography/site-packages/cryptography/hazmat/bindings/_rust/*.
馃實 Your Environment
Operating System:
Output of bazel version:
Bazelisk version: 1.19.0
INFO: Invocation ID: 916bcf6b-c490-4217-9aa4-a9183b95af3b
Build label: 7.0.2
Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer
Build time: Thu Jan 25 16:14:15 2024 (1706199255)
Build timestamp: 1706199255
Build timestamp as int: 1706199255
Rules_python version:
馃悶 bug report
Affected Rule
I think this is likely a bug with the py_library rule, could potentially be something to do with a pip rule though.
Description
I'm trying to copy PyPI packages to a specific folder for putting on an OCI image. We're creating an Azure Function App and it's particular about how it runs the image, and so it's not finding the PyPI packages in the bazel runfiles tree (also it overrides the python path, so we couldn't just set that).
I've solved most of this by just copying the
@third_party_python_deps//package:pkgand@third_party_python_deps//package:dist_infointo the/usr/local/lib/python3.10/folder on our image. However, we're getting errors because it cannot find files which are within a directory starting with an underscore. For us, it'scryptography/hazmat/bindings/_rust/*. I also noticed that those files do not show up in abazel cquery --output=files @third_party_python_deps//cryptography:pkg.馃敩 Minimal Reproduction
Add
cryptographyas a third party PyPI dependency, then runbazel cquery --output=files @third_party_python_deps//cryptography:pkg. This should show most of the package's files, except the ones inexternal/third_party_python_deps_cryptography/site-packages/cryptography/hazmat/bindings/_rust/*.馃實 Your Environment
Operating System:
Output of
bazel version:Rules_python version: