<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nixos/nixpkgs.git/pkgs/development/python-modules/aiogithubapi, branch master</title>
<subtitle>Nix Packages collection</subtitle>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/'/>
<entry>
<title>python3Packages.aiogithubapi: migrate to finalAttrs</title>
<updated>2026-03-01T10:23:12+00:00</updated>
<author>
<name>Fabian Affolter</name>
<email>mail@fabian-affolter.ch</email>
</author>
<published>2026-03-01T09:58:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=ff7caa7a1de04bd3bddf0892046523031ee57d40'/>
<id>ff7caa7a1de04bd3bddf0892046523031ee57d40</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.aiogithubapi: 25.5.0 -&gt; 26.0.0</title>
<updated>2026-03-01T09:56:35+00:00</updated>
<author>
<name>Fabian Affolter</name>
<email>mail@fabian-affolter.ch</email>
</author>
<published>2026-03-01T09:54:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=425a20d4ea89723be44d1aef92e77efbed28142d'/>
<id>425a20d4ea89723be44d1aef92e77efbed28142d</id>
<content type='text'>
Changelog: https://github.com/ludeeus/aiogithubapi/releases/tag/26.0.0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changelog: https://github.com/ludeeus/aiogithubapi/releases/tag/26.0.0
</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>python313Packages.aiogithubapi: refactor</title>
<updated>2025-09-02T17:52:49+00:00</updated>
<author>
<name>Fabian Affolter</name>
<email>mail@fabian-affolter.ch</email>
</author>
<published>2025-08-12T23:00:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=63d4351af12f3f3c9d110a2439cd2d3b04bbe28f'/>
<id>63d4351af12f3f3c9d110a2439cd2d3b04bbe28f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>treewide: pytestFlagsArray -&gt; pytestFlags and join flag and option argument</title>
<updated>2025-06-15T17:02:16+00:00</updated>
<author>
<name>Yueh-Shun Li</name>
<email>shamrocklee@posteo.net</email>
</author>
<published>2025-04-30T19:46:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=76e2a397c25a4a711abd5f4b697d54f0e509cb12'/>
<id>76e2a397c25a4a711abd5f4b697d54f0e509cb12</id>
<content type='text'>
This treewide change targets Python packages
that specifies pytest flags with pytestFlagsArray,
and whose flags cannot be consructed by other pytestCheckHook-honoured arguments.

Use the __structuredAttrs-agnostic argument pytestFlags
instead of the deprecated pytestFlagsArray.

For flags with option arguments,
join each flag and their option argument into a single command-line argument
following POSIX Utility Argument Syntax[1]
for easier overriding (remove/replace).

Examples:

* [ "-W" "ignore:message:WarningClass" ] -&gt;
  [ "-Wignore:message:WarningClass" ]

* [ "--reruns" "3" ] -&gt;
  [ "--reruns=3" ]

[1]: https://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This treewide change targets Python packages
that specifies pytest flags with pytestFlagsArray,
and whose flags cannot be consructed by other pytestCheckHook-honoured arguments.

Use the __structuredAttrs-agnostic argument pytestFlags
instead of the deprecated pytestFlagsArray.

For flags with option arguments,
join each flag and their option argument into a single command-line argument
following POSIX Utility Argument Syntax[1]
for easier overriding (remove/replace).

Examples:

* [ "-W" "ignore:message:WarningClass" ] -&gt;
  [ "-Wignore:message:WarningClass" ]

* [ "--reruns" "3" ] -&gt;
  [ "--reruns=3" ]

[1]: https://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
</pre>
</div>
</content>
</entry>
<entry>
<title>python313Packages.aiogithubapi: 24.6.0 -&gt; 25.5.0</title>
<updated>2025-05-29T08:52:33+00:00</updated>
<author>
<name>Fabian Affolter</name>
<email>mail@fabian-affolter.ch</email>
</author>
<published>2025-05-29T08:52:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=acd037f0226c3f8f3ea98eac6816e42ba5da9022'/>
<id>acd037f0226c3f8f3ea98eac6816e42ba5da9022</id>
<content type='text'>
Diff: https://github.com/ludeeus/aiogithubapi/compare/refs/tags/24.6.0...refs/tags/25.5.0

Changelog: https://github.com/ludeeus/aiogithubapi/releases/tag/25.5.0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Diff: https://github.com/ludeeus/aiogithubapi/compare/refs/tags/24.6.0...refs/tags/25.5.0

Changelog: https://github.com/ludeeus/aiogithubapi/releases/tag/25.5.0
</pre>
</div>
</content>
</entry>
<entry>
<title>python313Packages.aiogithubapi: relax async-timeout</title>
<updated>2025-03-05T08:07:23+00:00</updated>
<author>
<name>Fabian Affolter</name>
<email>mail@fabian-affolter.ch</email>
</author>
<published>2025-03-05T08:07:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=e1aab5f7e2805342688d5b203f4db5fffbdcc6b4'/>
<id>e1aab5f7e2805342688d5b203f4db5fffbdcc6b4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>treewide: migrate fetchgit `rev = "refs/tags/..."` to `tag`</title>
<updated>2025-01-03T23:19:17+00:00</updated>
<author>
<name>Peder Bergebakken Sundt</name>
<email>pbsds@hotmail.com</email>
</author>
<published>2025-01-03T20:24:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=0cd04d30366f52fe9dd7664fb7decf4b93b1d789'/>
<id>0cd04d30366f52fe9dd7664fb7decf4b93b1d789</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.aiogithubapi: fix build</title>
<updated>2024-11-14T07:51:30+00:00</updated>
<author>
<name>wxt</name>
<email>3264117476@qq.com</email>
</author>
<published>2024-11-13T23:46:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=ecf41568e50cfba990a18ebf2f7b921ab8a978f3'/>
<id>ecf41568e50cfba990a18ebf2f7b921ab8a978f3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python312Packages.aiogithubapi: refactor</title>
<updated>2024-07-12T19:13:59+00:00</updated>
<author>
<name>Fabian Affolter</name>
<email>mail@fabian-affolter.ch</email>
</author>
<published>2024-07-12T19:13:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=73b4e6dcbbf44382c9f770364b2db2680aa58db0'/>
<id>73b4e6dcbbf44382c9f770364b2db2680aa58db0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
