<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nixos/nixpkgs.git/pkgs/development/python-modules/apsw, 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.apsw: 3.48.0.0 -&gt; 3.51.0.0</title>
<updated>2025-11-25T20:39:10+00:00</updated>
<author>
<name>Martin Weinelt</name>
<email>hexa@darmstadt.ccc.de</email>
</author>
<published>2025-11-12T15:35:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=702f944bd79bb058ddac8f47ea24c8cc7e014587'/>
<id>702f944bd79bb058ddac8f47ea24c8cc7e014587</id>
<content type='text'>
https://github.com/rogerbinns/apsw/blob/3.51.0.0/doc/changes.rst
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rogerbinns/apsw/blob/3.51.0.0/doc/changes.rst
</pre>
</div>
</content>
</entry>
<entry>
<title>python313Packages.apsw: 3.46.1.0 -&gt; 3.48.0.0</title>
<updated>2025-06-11T15:43:16+00:00</updated>
<author>
<name>Florian Brandes</name>
<email>florian.brandes@posteo.de</email>
</author>
<published>2025-05-19T06:55:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=443b563ce812cdb4cbb9b8b4cb9cf36931bc701a'/>
<id>443b563ce812cdb4cbb9b8b4cb9cf36931bc701a</id>
<content type='text'>
https://github.com/rogerbinns/apsw/blob/3.48.0.0/doc/changes.rst

Signed-off-by: Florian Brandes &lt;florian.brandes@posteo.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rogerbinns/apsw/blob/3.48.0.0/doc/changes.rst

Signed-off-by: Florian Brandes &lt;florian.brandes@posteo.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>python313Packages.apsw: switch test suite</title>
<updated>2025-06-04T08:03:30+00:00</updated>
<author>
<name>Florian Brandes</name>
<email>florian.brandes@posteo.de</email>
</author>
<published>2025-05-22T13:46:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=301d2c810d0f2695b5abf79ae53ab9c9ebdb11c4'/>
<id>301d2c810d0f2695b5abf79ae53ab9c9ebdb11c4</id>
<content type='text'>
Signed-off-by: Florian Brandes &lt;florian.brandes@posteo.de&gt;
Co-authored-by: Martin Weinelt &lt;mweinelt@users.noreply.github.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Florian Brandes &lt;florian.brandes@posteo.de&gt;
Co-authored-by: Martin Weinelt &lt;mweinelt@users.noreply.github.com&gt;
</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>treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`</title>
<updated>2024-09-24T21:04:37+00:00</updated>
<author>
<name>Artturin</name>
<email>Artturin@artturin.com</email>
</author>
<published>2024-09-24T15:50:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=e0464e47880a69896f0fb1810f00e0de469f770a'/>
<id>e0464e47880a69896f0fb1810f00e0de469f770a</id>
<content type='text'>
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.apsw: fix build on Darwin</title>
<updated>2024-08-17T20:58:51+00:00</updated>
<author>
<name>Sebastián Mancilla</name>
<email>smancill@smancill.dev</email>
</author>
<published>2024-08-16T05:35:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=69aab1eff89dc896f08a567dcca16b9a1200d676'/>
<id>69aab1eff89dc896f08a567dcca16b9a1200d676</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #332764 from NixOS/staging-next</title>
<updated>2024-08-14T11:33:28+00:00</updated>
<author>
<name>Martin Weinelt</name>
<email>mweinelt@users.noreply.github.com</email>
</author>
<published>2024-08-14T11:33:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=9ccfa877218074582ff21fe950944fa0a7240248'/>
<id>9ccfa877218074582ff21fe950944fa0a7240248</id>
<content type='text'>
staging-next 2024-08-06</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
staging-next 2024-08-06</pre>
</div>
</content>
</entry>
<entry>
<title>python312Packages.apsw: 3.46.0.1 -&gt; 3.46.1.0</title>
<updated>2024-08-13T21:50:51+00:00</updated>
<author>
<name>R. Ryantm</name>
<email>ryantm-bot@ryantm.com</email>
</author>
<published>2024-08-13T21:50:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=8f416800f6e1dbccfda2006771a9f9cd430e2aff'/>
<id>8f416800f6e1dbccfda2006771a9f9cd430e2aff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python312Packages.apsw: test with pytest</title>
<updated>2024-08-06T16:18:40+00:00</updated>
<author>
<name>Martin Weinelt</name>
<email>hexa@darmstadt.ccc.de</email>
</author>
<published>2024-07-30T02:20:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=102305ea0b353ad8c1b12670b60cc6ff839d91cb'/>
<id>102305ea0b353ad8c1b12670b60cc6ff839d91cb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python3Packages.apsw: 3.46.0.0 -&gt; 3.46.0.1</title>
<updated>2024-06-24T10:14:42+00:00</updated>
<author>
<name>Martin Weinelt</name>
<email>hexa@darmstadt.ccc.de</email>
</author>
<published>2024-06-19T03:04:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/nixos/nixpkgs.git/commit/?id=315a43a2f067b5b69735bb12631027a569d1707e'/>
<id>315a43a2f067b5b69735bb12631027a569d1707e</id>
<content type='text'>
https://github.com/rogerbinns/apsw/blob/refs/tags/3.46.0.1/doc/changes.rst
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/rogerbinns/apsw/blob/refs/tags/3.46.0.1/doc/changes.rst
</pre>
</div>
</content>
</entry>
</feed>
