summaryrefslogtreecommitdiff
path: root/tests/internals/pluginloading/customsource/pluginsources/foo.py
blob: c5229f3e2e34f575595339e041acc99f2fca1f09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from buildstream import Source


class FooSource(Source):

    BST_MIN_VERSION = "2.0"

    def preflight(self):
        pass

    def configure(self, node):
        pass

    def get_unique_key(self):
        pass


def setup():
    return FooSource