Unverified Commit 4f3bd745 authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

Merge master into staging-nixos

parents f84c03b7 24e52c76
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -149,7 +149,7 @@ import ./make-test-python.nix {
    client.wait_for_unit("network-online.target")
    smtp1.wait_for_unit("opensmtpd")
    smtp2.wait_for_unit("opensmtpd")
    smtp2.wait_for_unit("dovecot2")
    smtp2.wait_for_unit("dovecot")

    # To prevent sporadic failures during daemon startup, make sure
    # services are listening on their ports before sending requests
+2 −2
Original line number Diff line number Diff line
@@ -12,13 +12,13 @@

python3Packages.buildPythonApplication (finalAttrs: {
  pname = "bleachbit";
  version = "5.0.0";
  version = "5.0.2";

  pyproject = false;

  src = fetchurl {
    url = "mirror://sourceforge/bleachbit/bleachbit-${finalAttrs.version}.tar.bz2";
    sha256 = "sha256-CU5IW8NVWuPl4PHu6mYpD5mOpRiDq6oZk9pDmuz8PjA=";
    sha256 = "sha256-q3iRdrqsR7U+O2LUaf5qDv4DVNsTOcnf9Po+pewzwMs=";
  };

  nativeBuildInputs = [
+3 −3
Original line number Diff line number Diff line
@@ -11,14 +11,14 @@

python3Packages.buildPythonApplication {
  pname = "chirp";
  version = "0.4.0-unstable-2026-02-15";
  version = "0.4.0-unstable-2026-02-19";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "kk7ds";
    repo = "chirp";
    rev = "304236906f680ab9d2d951d33f9eabd343448a88";
    hash = "sha256-tVwby2gpnfzsKzCUdCZbSbxmbxRmjnm4ek/S5n3Gk5U=";
    rev = "1467519e792e8ebcc9a33dc40df0b2e273ce9a53";
    hash = "sha256-hUcuWanQEsDhwpN0UrPpnfn8ff+o5KZr7hgl54CmWSI=";
  };

  nativeBuildInputs = [
+2 −2
Original line number Diff line number Diff line
@@ -7,14 +7,14 @@

python3Packages.buildPythonApplication (finalAttrs: {
  pname = "django-upgrade";
  version = "1.29.1";
  version = "1.30.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "adamchainz";
    repo = "django-upgrade";
    tag = finalAttrs.version;
    hash = "sha256-NnVFMItWiTL82LMxDKeGofaestRBfZFVjTKFjbJFmmU=";
    hash = "sha256-IiGwYq6TTNiNIx1jrzQlLiULWNZlam7onJJGFFJ/hVM=";
  };

  build-system = [ python3Packages.setuptools ];
+4 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
  icu75,
  libexttextcat,
  libsodium,
  libxcrypt,
  libstemmer,
  cyrus_sasl,
  nixosTests,
@@ -67,6 +68,7 @@ stdenv.mkDerivation (finalAttrs: {
    icu75
    libexttextcat
    libsodium
    libxcrypt
    libstemmer
    cyrus_sasl.dev
  ]
@@ -180,6 +182,8 @@ stdenv.mkDerivation (finalAttrs: {

  doCheck = !stdenv.hostPlatform.isDarwin;

  strictDeps = true;

  meta = {
    homepage = "https://dovecot.org/";
    description = "Open source IMAP and POP3 email server written with security primarily in mind";
Loading