Unverified Commit b35ed50e authored by github-actions[bot]'s avatar github-actions[bot] Committed by GitHub
Browse files

Merge master into haskell-updates

parents 29c84f4a 43e0b0d1
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -214,9 +214,6 @@ because their behaviour is different:
  paths included in this list. Items listed in `install_requires` go here.
* `optional-dependencies ? { }`: Optional feature flagged dependencies.  Items listed in `extras_requires` go here.

Aside from propagating dependencies,
  `buildPythonPackage` also injects code into and wraps executables with the
  paths included in this list. Items listed in `extras_requires` go here.

##### Overriding Python packages {#overriding-python-packages}

@@ -2049,8 +2046,8 @@ no maintainer, so maintenance falls back to the package set maintainers.

### Updating packages in bulk {#python-package-bulk-updates}

There is a tool to update alot of python libraries in bulk, it exists at
`maintainers/scripts/update-python-libraries` with this repository.
A tool to bulk-update numerous Python libraries is available in the
repository at `maintainers/scripts/update-python-libraries`.

It can quickly update minor or major versions for all packages selected
and create update commits, and supports the `fetchPypi`, `fetchurl` and
+19 −0
Original line number Diff line number Diff line
@@ -2447,6 +2447,13 @@
    github = "beezow";
    githubId = 42082156;
  };
  benaryorg = {
    name = "benaryorg";
    email = "binary@benary.org";
    github = "benaryorg";
    githubId = 6145260;
    keys = [ { fingerprint = "804B 6CB8 AED5 61D9 3DAD  4DC5 E2F2 2C5E DF20 119D"; } ];
  };
  bendlas = {
    email = "herwig@bendlas.net";
    matrix = "@bendlas:matrix.org";
@@ -15631,6 +15638,12 @@
    githubId = 5948762;
    name = "Berk Özkütük";
  };
  ozwaldorf = {
    email = "self@ossian.dev";
    github = "ozwaldorf";
    githubId = 8976745;
    name = "Ossian Mapes";
  };
  p3psi = {
    name = "Elliot Boo";
    email = "p3psi.boo@gmail.com";
@@ -15789,6 +15802,12 @@
    githubId = 4580157;
    name = "Patrick Hobusch";
  };
  patka = {
    email = "patka@patka.dev";
    github = "patka-123";
    githubId = 69802930;
    name = "patka";
  };
  patrickdag = {
    email = "patrick-nixos@failmail.dev";
    github = "PatrickDaG";
+1 −0
Original line number Diff line number Diff line
@@ -753,6 +753,7 @@ with lib.maintainers;
    members = [
      SuperSandro2000
      anthonyroussel
      vinetos
    ];
    scope = "Maintain the ecosystem around OpenStack";
    shortName = "OpenStack";
+4 −0
Original line number Diff line number Diff line
@@ -119,6 +119,8 @@

- `grafana` has been updated to version 11.1. This version doesn't support setting `http_addr` to a hostname anymore, an IP address is expected.

- `services.kubernetes.kubelet.clusterDns` now accepts a list of DNS resolvers rather than a single string, bringing the module more in line with the upstream Kubelet configuration schema.

- `wstunnel` has had a major version upgrade that entailed rewriting the program in Rust.
  The module was updated to accommodate for breaking changes.
  Breaking changes to the module API were minimised as much as possible,
@@ -173,6 +175,8 @@

- All Cinnamon and XApp packages have been moved to top-level (i.e., `cinnamon.nemo` is now `nemo`).

- All GNOME packages have been moved to top-level (i.e., `gnome.nautilus` is now `nautilus`).

- `services.cgit` now runs as the cgit user by default instead of root.
  This change requires granting access to the repositories to this user or
  setting the appropriate one through `services.cgit.some-instance.user`.
+1 −1
Original line number Diff line number Diff line
@@ -183,7 +183,7 @@ let
    # horrible sed hack to add the line that was accidentally removed
    # from the default config in #324516
    # FIXME: fix that, revert this
    sed "5i <include ignore_missing="yes">/etc/fonts/conf.d</include>" -i $dst/../fonts.conf
    sed '5i <include ignore_missing="yes">/etc/fonts/conf.d</include>' -i $dst/../fonts.conf

    # TODO: remove this legacy symlink once people stop using packages built before #95358 was merged
    mkdir -p $out/etc/fonts/2.11
Loading