python3Packages.scmrepo: 3.6.1 -> 3.6.2 (#506246)

This commit is contained in:
Fabian Affolter
2026-04-03 19:34:07 +00:00
committed by GitHub
@@ -16,16 +16,16 @@
tqdm,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "scmrepo";
version = "3.6.1";
version = "3.6.2";
pyproject = true;
src = fetchFromGitHub {
owner = "iterative";
repo = "scmrepo";
tag = version;
hash = "sha256-nkHEeslQM+F4PpNrrbSql+jCJDHmdaGfGkciluhXmHo=";
tag = finalAttrs.version;
hash = "sha256-E7BHdLDS57r/UbSA62lfr3z+5sqFTPRzwfFLIITeSs0=";
};
build-system = [
@@ -54,8 +54,8 @@ buildPythonPackage rec {
meta = {
description = "SCM wrapper and fsspec filesystem";
homepage = "https://github.com/iterative/scmrepo";
changelog = "https://github.com/iterative/scmrepo/releases/tag/${src.tag}";
changelog = "https://github.com/iterative/scmrepo/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})