aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--package.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.nix b/package.nix
index d88118c0..c081663b 100644
--- a/package.nix
+++ b/package.nix
@@ -27,7 +27,7 @@ buildGoModule rec {
path = lib.cleanSource ./.;
filter =
path: type:
- !(type == "regular" && lib.hasSuffix ".nix" path)
+ !(type == "regular" && (lib.hasSuffix ".nix" path || lib.hasSuffix ".py" path))
&& !(type == "directory" && lib.hasSuffix "/cmd/fsu" path);
};
vendorHash = null;