<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nixos/nixpkgs.git/pkgs/development/python-modules/asn1, 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.asn1: 3.2.0 -&gt; 3.3.0</title>
<updated>2026-05-21T02:56:14+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2026-05-21T02:56:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=f1d2366fa1b0d3f307da23df1db8a5f6cc8abbf4'/>
<id>f1d2366fa1b0d3f307da23df1db8a5f6cc8abbf4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.asn1: 3.1.0 -&gt; 3.2.0</title>
<updated>2026-02-26T06:01:13+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2026-02-26T06:01:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=c12f425dc92e783ccbd8f1deccb64d36fda98ac2'/>
<id>c12f425dc92e783ccbd8f1deccb64d36fda98ac2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.asn1: 2.8.0 -&gt; 3.1.0</title>
<updated>2026-02-01T15:42:15+00:00</updated>
<author>
<name>Martin Weinelt</name>
<email>hexa@darmstadt.ccc.de</email>
</author>
<published>2026-01-21T17:31:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=08651de860bc492ce63e5eeaeea7e1e7c97de9ba'/>
<id>08651de860bc492ce63e5eeaeea7e1e7c97de9ba</id>
<content type='text'>
https://github.com/andrivet/python-asn1/blob/v3.1.0/CHANGELOG.rst

This commit was automatically generated using update-python-libraries.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/andrivet/python-asn1/blob/v3.1.0/CHANGELOG.rst

This commit was automatically generated using update-python-libraries.
</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>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>Revert "python313Packages.asn1: 2.8.0 -&gt; 3.0.0"</title>
<updated>2025-10-15T00:37:31+00:00</updated>
<author>
<name>Robert Schütz</name>
<email>nix@dotlambda.de</email>
</author>
<published>2025-10-14T23:56:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=ee9c99c1f33ee751e26823288816d92e04d67aa3'/>
<id>ee9c99c1f33ee751e26823288816d92e04d67aa3</id>
<content type='text'>
This reverts commit bf56ca9a8e6238a4378a85939a2a41b740df50a1.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit bf56ca9a8e6238a4378a85939a2a41b740df50a1.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "python313Packages.asn1: 3.0.0 -&gt; 3.0.1"</title>
<updated>2025-10-15T00:37:31+00:00</updated>
<author>
<name>Robert Schütz</name>
<email>nix@dotlambda.de</email>
</author>
<published>2025-10-14T23:56:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=8f94b1c7aea1df87dc5b060599757df999fdc7ad'/>
<id>8f94b1c7aea1df87dc5b060599757df999fdc7ad</id>
<content type='text'>
This reverts commit eac32d1e479508398fa1bd35697503b6eb403735.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit eac32d1e479508398fa1bd35697503b6eb403735.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "python3Packages.asn1: 3.0.1 -&gt; 3.1.0"</title>
<updated>2025-10-15T00:37:30+00:00</updated>
<author>
<name>Robert Schütz</name>
<email>nix@dotlambda.de</email>
</author>
<published>2025-10-14T23:56:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=925d9f686b834938ccd39e721126dac37c9e13d0'/>
<id>925d9f686b834938ccd39e721126dac37c9e13d0</id>
<content type='text'>
This reverts commit a3564f44239a3941574f32048efacd5cef1a3545.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit a3564f44239a3941574f32048efacd5cef1a3545.
</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>python3Packages.asn1: 3.0.1 -&gt; 3.1.0</title>
<updated>2025-05-24T17:01:46+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2025-05-24T17:01:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=a3564f44239a3941574f32048efacd5cef1a3545'/>
<id>a3564f44239a3941574f32048efacd5cef1a3545</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
