python3Packages.python-debian: 1.0.1 -> 1.1.0 (#489452)

This commit is contained in:
Sizhe Zhao
2026-04-28 01:11:16 +00:00
committed by GitHub
@@ -9,17 +9,17 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "python-debian";
version = "1.0.1";
version = "1.1.0";
pyproject = true;
src = fetchFromGitLab {
domain = "salsa.debian.org";
owner = "python-debian-team";
repo = "python-debian";
tag = version;
hash = "sha256-lSKtlBqAa8cJZZHMVb90eYIGem4DwVZLldaYSAJBNek=";
tag = finalAttrs.version;
hash = "sha256-v2b9xobxCrSz0tOEBo6awmQuTyykyJlsryPBMRU9EmM=";
};
build-system = [
@@ -48,4 +48,4 @@ buildPythonPackage rec {
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ nickcao ];
};
}
})