<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nixos/nixpkgs.git/pkgs/development/python-modules/brotlicffi, branch master</title>
<subtitle>Nix Packages collection</subtitle>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/'/>
<entry>
<title>pypy3Packages.matplotlib: fix failing dependencies (#481375)</title>
<updated>2026-01-29T17:53:23+00:00</updated>
<author>
<name>Sandro</name>
<email>sandro.jaeckel@gmail.com</email>
</author>
<published>2026-01-29T17:53:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=29d6c423c57d9248df768f5ad7b35d103305f259'/>
<id>29d6c423c57d9248df768f5ad7b35d103305f259</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>pypy3Packages.brotlicffi: fix build</title>
<updated>2026-01-18T17:57:46+00:00</updated>
<author>
<name>Sandro Jäckel</name>
<email>sandro.jaeckel@gmail.com</email>
</author>
<published>2026-01-18T16:44:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=e2cbba546005982699939182f450fe642b77c4b7'/>
<id>e2cbba546005982699939182f450fe642b77c4b7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>treewide: remove superfluous disabled</title>
<updated>2026-01-11T17:34:20+00:00</updated>
<author>
<name>Robert Schütz</name>
<email>nix@dotlambda.de</email>
</author>
<published>2026-01-11T17:32:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=1a04744f74b8d9330e36dfb401aea6dba74fba79'/>
<id>1a04744f74b8d9330e36dfb401aea6dba74fba79</id>
<content type='text'>
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:

    pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
    for f in $(find -name '*.nix'); do
        grep -q "$pattern" "$f" || continue
        sed -i "/$pattern/d" "$f"
        if [ $(grep -c pythonOlder "$f") == 1 ]; then
            sed -i '/^\s*pythonOlder,\s*$/d' "$f"
        fi
        nixfmt "$f"
    done
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:

    pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
    for f in $(find -name '*.nix'); do
        grep -q "$pattern" "$f" || continue
        sed -i "/$pattern/d" "$f"
        if [ $(grep -c pythonOlder "$f") == 1 ]; then
            sed -i '/^\s*pythonOlder,\s*$/d' "$f"
        fi
        nixfmt "$f"
    done
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.brotlicffi: 1.1.0.0 -&gt; 1.2.0.0</title>
<updated>2026-01-08T10:50:46+00:00</updated>
<author>
<name>Robert Schütz</name>
<email>nix@dotlambda.de</email>
</author>
<published>2026-01-08T10:48:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=b2e35ab78256222e9473013882d0791118794b11'/>
<id>b2e35ab78256222e9473013882d0791118794b11</id>
<content type='text'>
Diff: https://github.com/python-hyper/brotlicffi/compare/v1.1.0.0...v1.2.0.0

Changelog: https://github.com/python-hyper/brotlicffi/blob/v1.2.0.0/HISTORY.rst
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Diff: https://github.com/python-hyper/brotlicffi/compare/v1.1.0.0...v1.2.0.0

Changelog: https://github.com/python-hyper/brotlicffi/blob/v1.2.0.0/HISTORY.rst
</pre>
</div>
</content>
</entry>
<entry>
<title>treewide: clean up 'meta = with' pattern</title>
<updated>2025-12-10T17:09:49+00:00</updated>
<author>
<name>Ihar Hrachyshka</name>
<email>ihar.hrachyshka@gmail.com</email>
</author>
<published>2025-12-10T16:44:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=567e8dfd8eddc5468e6380fc563ab8a27422ab1d'/>
<id>567e8dfd8eddc5468e6380fc563ab8a27422ab1d</id>
<content type='text'>
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther &lt;walther@technowledgy.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther &lt;walther@technowledgy.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>treewide: pytestFlagsArray -&gt; enabledTestPaths (trivial)</title>
<updated>2025-06-12T14:05:29+00:00</updated>
<author>
<name>Yueh-Shun Li</name>
<email>shamrocklee@posteo.net</email>
</author>
<published>2025-04-30T15:21:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=794f904bf3f6a985fcbd8d3a75d29ac7e84c3a50'/>
<id>794f904bf3f6a985fcbd8d3a75d29ac7e84c3a50</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>treewide: fix typos</title>
<updated>2025-06-02T14:07:07+00:00</updated>
<author>
<name>Peder Bergebakken Sundt</name>
<email>pbsds@hotmail.com</email>
</author>
<published>2025-06-02T13:54:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=c77ac9dfc3e022dfeb2788dbf533d0d6b853f8c7'/>
<id>c77ac9dfc3e022dfeb2788dbf533d0d6b853f8c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/master' into staging-next</title>
<updated>2025-04-08T07:29:26+00:00</updated>
<author>
<name>K900</name>
<email>me@0upti.me</email>
</author>
<published>2025-04-08T07:29:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=f42e00d66ef2539bc05fae91af407f16c44abccd'/>
<id>f42e00d66ef2539bc05fae91af407f16c44abccd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "treewide: replace `rev` with `tag`"</title>
<updated>2025-04-08T06:57:25+00:00</updated>
<author>
<name>Winter</name>
<email>winter@winter.cafe</email>
</author>
<published>2025-04-08T06:51:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=a19cd4ffb1f4b953a76f3ac29c6520d0b1877108'/>
<id>a19cd4ffb1f4b953a76f3ac29c6520d0b1877108</id>
<content type='text'>
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/master' into staging-next</title>
<updated>2025-04-07T18:21:10+00:00</updated>
<author>
<name>K900</name>
<email>me@0upti.me</email>
</author>
<published>2025-04-07T18:21:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=b3146d44461a07e528156a7ad40e57aecc88fd0a'/>
<id>b3146d44461a07e528156a7ad40e57aecc88fd0a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
