<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nixos/nixpkgs.git/pkgs/development/python-modules/django-anymail, 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.django-anymail: 14.0 -&gt; 15.0</title>
<updated>2026-04-21T07:46:51+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2026-04-21T07:46:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=83275fa0c6e10c5bdccee2f9206d5a2c531abb13'/>
<id>83275fa0c6e10c5bdccee2f9206d5a2c531abb13</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python313Packages.django-anymail: align dependencies with upstream, add optional dependencies that have extra dependencies</title>
<updated>2026-03-01T02:04:41+00:00</updated>
<author>
<name>Sandro Jäckel</name>
<email>sandro.jaeckel@gmail.com</email>
</author>
<published>2026-02-25T12:22:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=bd5d96866b931e6126e189f8fbe5f53f9d8044b0'/>
<id>bd5d96866b931e6126e189f8fbe5f53f9d8044b0</id>
<content type='text'>
see https://github.com/anymail/django-anymail/blob/v14.0/pyproject.toml#L69 and
https://github.com/anymail/django-anymail/blob/v14.0/pyproject.toml#L79-L108
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
see https://github.com/anymail/django-anymail/blob/v14.0/pyproject.toml#L69 and
https://github.com/anymail/django-anymail/blob/v14.0/pyproject.toml#L79-L108
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.django-anymail: disable failing test</title>
<updated>2026-02-25T20:56:22+00:00</updated>
<author>
<name>Martin Weinelt</name>
<email>hexa@darmstadt.ccc.de</email>
</author>
<published>2026-02-25T20:49:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=3497e446108c1d893c7c6d6a50023d3c647b498e'/>
<id>3497e446108c1d893c7c6d6a50023d3c647b498e</id>
<content type='text'>
After the 14.0 update we saw a failing likely related due to a MIME type
mismatch. To disable the particular test I reconfigured the package to
use standard pytest testing facilities.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After the 14.0 update we saw a failing likely related due to a MIME type
mismatch. To disable the particular test I reconfigured the package to
use standard pytest testing facilities.
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.django-anymail: 13.1 -&gt; 14.0</title>
<updated>2026-02-01T15:42:58+00:00</updated>
<author>
<name>Martin Weinelt</name>
<email>hexa@darmstadt.ccc.de</email>
</author>
<published>2026-01-21T17:32:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=1283a50fa12769e2623f9c7a08bfa9559e2d854d'/>
<id>1283a50fa12769e2623f9c7a08bfa9559e2d854d</id>
<content type='text'>
https://github.com/anymail/django-anymail/blob/v14.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/anymail/django-anymail/blob/v14.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>python3Packages.django-anymail: 13.0.1 -&gt; 13.1</title>
<updated>2025-09-11T12:03:30+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2025-09-11T12:03:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=a4a98b8002775baa85f9a4332709da9686c8a768'/>
<id>a4a98b8002775baa85f9a4332709da9686c8a768</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.django-anymail: 13.0 -&gt; 13.0.1</title>
<updated>2025-07-25T22:40:34+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2025-07-25T22:40:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=5575e163c0c70c6d9e7e406f2077b195f7ad9ed7'/>
<id>5575e163c0c70c6d9e7e406f2077b195f7ad9ed7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>python312Packages.django-anymail: 12.0 -&gt; 13.0</title>
<updated>2025-04-12T21:57:12+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2025-04-12T21:57:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=b8d1267b6a4acdfdec01248689d5cfddf1177dc0'/>
<id>b8d1267b6a4acdfdec01248689d5cfddf1177dc0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
