pazel icon indicating copy to clipboard operation
pazel copied to clipboard

pazel - generate Bazel BUILD files for Python

Results 10 pazel issues
Sort by recently updated
recently updated
newest added

When an `ImportInferenceRule` in a `.pazelrc` file returns `modules`, they are automatically prepended with `:`, limiting them to local rule references; external repositories start with an `@` symbol, see: https://bazel.build/extending/repo

In my project, I already have files name build, so I'd like to generate BUILD.bazel files via pazel. This PR adds a new option: `BUILD_FILE_NAME = 'BUILD.bazel'` and setting that...

I'd like the ability to generate BUILD.bazel files instead of the standard BUILD files. I feel it would be good to provide an option like: `BUILD_FILE_NAME = 'BUILD.bazel'` in the...

Hi, in [flask-bug](https://github.com/harobed/pazel/tree/flask-bug) branch, I can execute with success: ```sh $ bazel build //... INFO: Invocation ID: 6fe25081-9152-484d-8c1f-2f3d90e9a465 INFO: Analysed 16 targets (0 packages loaded, 0 targets configured). INFO: Found...

Add all bazel folders in `.gitignores`.

Fix « ERROR: error loading package '': Encountered error while reading extension file 'python/pip.bzl': no such package '@io_bazel_rules_python//python': The native git_repository rule is deprecated. load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") for a replacement. »...

Hi, thanks for this great project, trying to use it to migrate one of our old python apps to bazel and we have code like: ``` from .models import (...