buildstream-plugins: ignore Git tags containing *dev*

Tags containing `*dev*` on official BuildStream projects are for
pre-releases, and should not be included in the passthru updateScript.

This is needed after https://github.com/NixOS/nixpkgs/pull/493236 showed
a issue with the updateScript.
This commit is contained in:
Dom Rodriguez
2026-03-05 15:44:01 +00:00
parent 5c501951d5
commit f8a58eb351
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
gitUpdater,
setuptools,
cython,
}:
@@ -29,6 +30,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "buildstream_plugins" ];
passthru.updateScript = gitUpdater {
ignoredVersions = "dev";
};
meta = {
description = "BuildStream plugins";
homepage = "https://github.com/apache/buildstream-plugins";