Unverified Commit 94009a5d authored by Sizhe Zhao's avatar Sizhe Zhao Committed by GitHub
Browse files

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

parents 9b191b8d bc177295
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})