4
0
Fork 2
mirror of https://gerrit.hackerspace.pl/hscloud synced 2024-10-18 08:47:45 +00:00
hscloud/personal/q3k/b/32/BUILD.bazel
Serge Bazanski 2f712bf531 personal/q3k: cleanup script for b/32 (owncloud postgres)
Change-Id: I7a330d460763d99bfbd736cecae33c0df7a41aae
2021-07-10 16:53:59 +00:00

10 lines
218 B
Python

load("@rules_python//python:defs.bzl", "py_binary")
load("@pydeps//:requirements.bzl", "requirement")
py_binary(
name = "cleanup",
srcs = ["cleanup.py"],
deps = [
requirement("psycopg2"),
],
)