<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nixos/nixpkgs.git/pkgs/development/python-modules/cmd2, branch master</title>
<subtitle>Nix Packages collection</subtitle>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/'/>
<entry>
<title>Revert "python313Packages: don't apply the previous three commits yet"</title>
<updated>2026-02-22T17:18:06+00:00</updated>
<author>
<name>Vladimír Čunát</name>
<email>v@cunat.cz</email>
</author>
<published>2026-02-22T17:18:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=728ba61676f3cae8d38dd552f1543deb5ed46d3c'/>
<id>728ba61676f3cae8d38dd552f1543deb5ed46d3c</id>
<content type='text'>
This reverts commit 73688f666f7a3e09e96b338092aa9a7437459a7e.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 73688f666f7a3e09e96b338092aa9a7437459a7e.
</pre>
</div>
</content>
</entry>
<entry>
<title>python313Packages: don't apply the previous three commits yet</title>
<updated>2026-02-22T09:21:22+00:00</updated>
<author>
<name>Vladimír Čunát</name>
<email>v@cunat.cz</email>
</author>
<published>2026-02-22T09:15:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=73688f666f7a3e09e96b338092aa9a7437459a7e'/>
<id>73688f666f7a3e09e96b338092aa9a7437459a7e</id>
<content type='text'>
The point is to reduce the rebuilds for now,
as we need these to fix python314Packages.cmd2.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The point is to reduce the rebuilds for now,
as we need these to fix python314Packages.cmd2.
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.cmd2: 3.1.0 -&gt; 3.2.1</title>
<updated>2026-02-21T18:06:16+00:00</updated>
<author>
<name>Michael Daniels</name>
<email>mdaniels5757@gmail.com</email>
</author>
<published>2026-02-21T17:54:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=736715c1e8c283a78b4c7b96a5e5148fd3fa60b5'/>
<id>736715c1e8c283a78b4c7b96a5e5148fd3fa60b5</id>
<content type='text'>
Changelog: https://github.com/python-cmd2/cmd2/releases/tag/3.2.1

Fixes build with python3.14
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changelog: https://github.com/python-cmd2/cmd2/releases/tag/3.2.1

Fixes build with python3.14
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.cmd2: 2.7.0 -&gt; 3.1.0</title>
<updated>2026-02-01T15:42:31+00:00</updated>
<author>
<name>Martin Weinelt</name>
<email>hexa@darmstadt.ccc.de</email>
</author>
<published>2026-01-21T17:32:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=5a7d8b2e332549ba14142624e202056d35a47ec7'/>
<id>5a7d8b2e332549ba14142624e202056d35a47ec7</id>
<content type='text'>
https://github.com/python-cmd2/cmd2/releases/tag/3.1.0

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/python-cmd2/cmd2/releases/tag/3.1.0

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>python3Packages.cmd2: 2.6.1 -&gt; 2.7.0</title>
<updated>2025-08-09T16:58:51+00:00</updated>
<author>
<name>Martin Weinelt</name>
<email>hexa@darmstadt.ccc.de</email>
</author>
<published>2025-08-05T02:36:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=763be85735fe78feef20d2401414fc2b0e00c000'/>
<id>763be85735fe78feef20d2401414fc2b0e00c000</id>
<content type='text'>
https://github.com/python-cmd2/cmd2/releases/tag/2.7.0

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/python-cmd2/cmd2/releases/tag/2.7.0

This commit was automatically generated using update-python-libraries.
</pre>
</div>
</content>
</entry>
<entry>
<title>treewide: run nixfmt 1.0.0</title>
<updated>2025-07-24T11:55:40+00:00</updated>
<author>
<name>Wolfgang Walther</name>
<email>walther@technowledgy.de</email>
</author>
<published>2025-07-22T13:19:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=5a0711127cd8b916c3d3128f473388c8c79df0da'/>
<id>5a0711127cd8b916c3d3128f473388c8c79df0da</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.cmd2: 2.6.0 -&gt; 2.6.1</title>
<updated>2025-06-28T16:26:04+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2025-06-14T23:06:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=005caecf05352c4cbb1db1e699a092f7ee0b83dd'/>
<id>005caecf05352c4cbb1db1e699a092f7ee0b83dd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.cmd2: 2.5.11 -&gt; 2.6.0</title>
<updated>2025-06-05T14:57:02+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2025-06-04T10:09:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=1a752a03134f80d2a0c133e11f620ae56a0adba4'/>
<id>1a752a03134f80d2a0c133e11f620ae56a0adba4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
