<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nixos/nixpkgs/pkgs/development/python-modules/bluetooth-data-tools, branch origin/HEAD</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<id>http://cgit.wugi.info/nixos/nixpkgs/atom?h=origin%2FHEAD</id>
<link rel='self' href='http://cgit.wugi.info/nixos/nixpkgs/atom?h=origin%2FHEAD'/>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/'/>
<updated>2025-12-10T17:09:49Z</updated>
<entry>
<title>treewide: clean up 'meta = with' pattern</title>
<updated>2025-12-10T17:09:49Z</updated>
<author>
<name>Ihar Hrachyshka</name>
<email>ihar.hrachyshka@gmail.com</email>
</author>
<published>2025-12-10T16:44:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=567e8dfd8eddc5468e6380fc563ab8a27422ab1d'/>
<id>urn:sha1: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>
</entry>
<entry>
<title>python3Packages.bluetooth-data-tools: 1.28.3 -&gt; 1.28.4</title>
<updated>2025-11-01T03:38:25Z</updated>
<author>
<name>Robert Schütz</name>
<email>nix@dotlambda.de</email>
</author>
<published>2025-11-01T03:32:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=95af7aed7b8cb29dc0dca097940e1c8ab189b217'/>
<id>urn:sha1:95af7aed7b8cb29dc0dca097940e1c8ab189b217</id>
<content type='text'>
Diff: https://github.com/Bluetooth-Devices/bluetooth-data-tools/compare/v1.28.3...v1.28.4

Changelog: https://github.com/Bluetooth-Devices/bluetooth-data-tools/blob/v1.28.4/CHANGELOG.md
</content>
</entry>
<entry>
<title>python313Packages.bluetooth-data-tools: 1.28.2 -&gt; 1.28.3</title>
<updated>2025-10-07T06:44:17Z</updated>
<author>
<name>Fabian Affolter</name>
<email>fabian@affolter-engineering.ch</email>
</author>
<published>2025-10-07T06:44:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=ae5c018b6cb5357325694fcd676c12d97907234b'/>
<id>urn:sha1:ae5c018b6cb5357325694fcd676c12d97907234b</id>
<content type='text'>
Diff: https://github.com/Bluetooth-Devices/bluetooth-data-tools/compare/v1.28.2...v1.28.3

Changelog: https://github.com/Bluetooth-Devices/bluetooth-data-tools/blob/v1.28.3/CHANGELOG.md
</content>
</entry>
<entry>
<title>Merge master into staging-next</title>
<updated>2025-07-05T00:16:29Z</updated>
<author>
<name>nixpkgs-ci[bot]</name>
<email>190413589+nixpkgs-ci[bot]@users.noreply.github.com</email>
</author>
<published>2025-07-05T00:16:29Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=8ca50135a9efd1cfff0250e204334225993c4284'/>
<id>urn:sha1:8ca50135a9efd1cfff0250e204334225993c4284</id>
<content type='text'>
</content>
</entry>
<entry>
<title>python3Packages.bluetooth-data-tools: 1.28.1 -&gt; 1.28.2</title>
<updated>2025-07-03T22:27:16Z</updated>
<author>
<name>Martin Weinelt</name>
<email>hexa@darmstadt.ccc.de</email>
</author>
<published>2025-07-03T15:33:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=8aea29a182f565e07a2739af52b79ff2e13e5858'/>
<id>urn:sha1:8aea29a182f565e07a2739af52b79ff2e13e5858</id>
<content type='text'>
https://github.com/Bluetooth-Devices/bluetooth-data-tools/blob/v1.28.2/CHANGELOG.md
</content>
</entry>
<entry>
<title>treewide: pytestFlagsArray -&gt; pytestFlags and join flag and option argument</title>
<updated>2025-06-15T17:02:16Z</updated>
<author>
<name>Yueh-Shun Li</name>
<email>shamrocklee@posteo.net</email>
</author>
<published>2025-04-30T19:46:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=76e2a397c25a4a711abd5f4b697d54f0e509cb12'/>
<id>urn:sha1: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>
</entry>
<entry>
<title>python313Packages.bluetooth-data-tools: 1.26.5 -&gt; 1.28.1</title>
<updated>2025-05-09T03:06:27Z</updated>
<author>
<name>Robert Schütz</name>
<email>nix@dotlambda.de</email>
</author>
<published>2025-05-06T16:47:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=125435b6c32660a3cc5badce270bb3078bcfffa5'/>
<id>urn:sha1:125435b6c32660a3cc5badce270bb3078bcfffa5</id>
<content type='text'>
Diff: https://github.com/Bluetooth-Devices/bluetooth-data-tools/compare/refs/tags/v1.26.5...refs/tags/v1.28.1

Changelog: https://github.com/Bluetooth-Devices/bluetooth-data-tools/blob/v1.28.1/CHANGELOG.md
</content>
</entry>
<entry>
<title>python313Packages.bluetooth-data-tools: 1.23.4 -&gt; 1.26.5</title>
<updated>2025-04-03T21:13:25Z</updated>
<author>
<name>Robert Schütz</name>
<email>nix@dotlambda.de</email>
</author>
<published>2025-04-02T18:45:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=6136724946f4aafe1d1d6e7b0800c97e08012e42'/>
<id>urn:sha1:6136724946f4aafe1d1d6e7b0800c97e08012e42</id>
<content type='text'>
Diff: https://github.com/Bluetooth-Devices/bluetooth-data-tools/compare/refs/tags/v1.23.4...v1.26.5

Changelog: https://github.com/Bluetooth-Devices/bluetooth-data-tools/blob/v1.26.5/CHANGELOG.md
</content>
</entry>
<entry>
<title>python313Packages.bluetooth-data-tools: 1.22.0 -&gt; 1.23.4</title>
<updated>2025-02-06T17:55:13Z</updated>
<author>
<name>Martin Weinelt</name>
<email>hexa@darmstadt.ccc.de</email>
</author>
<published>2025-02-05T16:42:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=ed183588f923970d0abb757e97f76e2f42a5f2d5'/>
<id>urn:sha1:ed183588f923970d0abb757e97f76e2f42a5f2d5</id>
<content type='text'>
https://github.com/Bluetooth-Devices/bluetooth-data-tools/blob/v1.23.4/CHANGELOG.md
</content>
</entry>
<entry>
<title>python3Packages.bluetooth-data-tools: 1.20.0 -&gt; 1.22.0</title>
<updated>2025-01-27T09:54:51Z</updated>
<author>
<name>Martin Weinelt</name>
<email>hexa@darmstadt.ccc.de</email>
</author>
<published>2025-01-19T20:14:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=aa4072766e14b5abff1018441c0b8d259bf0be69'/>
<id>urn:sha1:aa4072766e14b5abff1018441c0b8d259bf0be69</id>
<content type='text'>
https://github.com/Bluetooth-Devices/bluetooth-data-tools/blob/v1.22.0/CHANGELOG.md
</content>
</entry>
</feed>
