mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 01:24:09 +01:00
buildstream/buildstream-plugins: ignore Git tags containing dev substring (#493485)
This commit is contained in:
commit
1eab9a40f5
2 changed files with 9 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
|||
lib,
|
||||
python3Packages,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
gitUpdater,
|
||||
|
||||
# buildInputs
|
||||
buildbox,
|
||||
|
|
@ -119,7 +119,9 @@ python3Packages.buildPythonApplication (finalAttrs: {
|
|||
|
||||
versionCheckProgram = "${placeholder "out"}/bin/bst";
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
passthru.updateScript = gitUpdater {
|
||||
ignoredVersions = "dev";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Powerful software integration tool";
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue