Aleksana
b598e72429
pyditz: fix build ( #351822 )
2024-10-28 20:58:54 +08:00
Robert Schütz
730e5fa135
pytr: 0.2.5 -> 0.3.0 ( #351149 )
2024-10-28 03:08:09 -07:00
wxt
ce50474f66
pyditz: remove testPhase
2024-10-28 15:47:05 +08:00
wxt
bb90c6ab2e
pyditz: nixfmt
2024-10-28 15:08:57 +08:00
wxt
938eaf0d91
pyditz: move to by-name
2024-10-28 15:08:37 +08:00
Robert Schütz
2f5813b702
pytr: update meta.changelog
2024-10-27 18:41:02 -07:00
R. Ryantm
c93e398e71
pyradio: 0.9.3.11 -> 0.9.3.11.1
2024-10-26 12:48:40 +02:00
R. Ryantm
9936b66b96
pytr: 0.2.5 -> 0.3.0
2024-10-25 11:25:43 +00:00
Aleksana
4f8f9ff867
pychess: init at 1.0.5 ( #344387 )
2024-10-24 23:13:07 +08:00
lgbishop
ca88a5ffe2
pychess: init at 1.0.5
...
Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
2024-10-24 03:16:48 +10:00
Gaetan Lepage
eaa5db175d
pylyzer: 0.0.66 -> 0.0.67
...
Diff: https://github.com/mtshiba/pylyzer/compare/refs/tags/v0.0.66...v0.0.67
Changelog: https://github.com/mtshiba/pylyzer/releases/tag/v0.0.67
2024-10-19 11:11:55 +02:00
Sandro
30cae82b98
pyfa: init at 2.60.1 ( #314934 )
2024-10-19 03:09:17 +02:00
Aleksana
e5a426af68
pyflyby: init at 1.9.6 ( #284453 )
2024-10-18 15:57:29 +08:00
jfvillablanca
1b212b8a10
pyflyby: init at 1.9.6
2024-10-17 22:21:38 +08:00
Christoph Hollizeck
65c965f047
pyfa: init at 2.60.1
2024-10-17 14:59:14 +02:00
Gaetan Lepage
1cce98b1f0
pylyzer: 0.0.65 -> 0.0.66
...
Diff: https://github.com/mtshiba/pylyzer/compare/refs/tags/v0.0.65...v0.0.66
Changelog: https://github.com/mtshiba/pylyzer/releases/tag/v0.0.66
2024-10-15 19:09:57 +02:00
Gaétan Lepage
2093089531
pylyzer: 0.0.64 -> 0.0.65 ( #346842 )
...
Diff: https://github.com/mtshiba/pylyzer/compare/refs/tags/v0.0.64...v0.0.65
Changelog: https://github.com/mtshiba/pylyzer/releases/tag/v0.0.65
2024-10-06 12:33:05 +02:00
Gaetan Lepage
30816e67d1
pylyzer: 0.0.63 -> 0.0.64
...
Diff: https://github.com/mtshiba/pylyzer/compare/refs/tags/v0.0.63...v0.0.64
Changelog: https://github.com/mtshiba/pylyzer/releases/tag/v0.0.64
2024-10-04 11:01:45 +02:00
R. Ryantm
e4b5baef7b
pyright: 1.1.381 -> 1.1.382
2024-10-01 20:55:21 +00:00
Gaetan Lepage
f4ef425868
pylyzer: 0.0.62 -> 0.0.63
...
Diff: https://github.com/mtshiba/pylyzer/compare/refs/tags/v0.0.62...v0.0.63
Changelog: https://github.com/mtshiba/pylyzer/releases/tag/v0.0.63
2024-09-26 13:05:03 +02:00
Nick Cao
29007f9cf7
pytr: 0.2.4 -> 0.2.5 ( #344313 )
2024-09-25 08:26:55 -04:00
Robert Schütz
ef58175fbe
pytr: 0.2.4 -> 0.2.5
...
Diff: https://github.com/pytr-org/pytr/compare/refs/tags/v0.2.4...v0.2.5
Changelog: https://github.com/pytr-org/pytr/releases/tag/0.2.5
2024-09-24 14:46:35 -07:00
Artturin
63fa53d97c
treewide: reformat files which need reformatting after
...
`treewide: replace stdenv.is with stdenv.hostPlatform.is`
2024-09-25 00:04:39 +03:00
Artturin
e0464e4788
treewide: replace stdenv.is
with stdenv.hostPlatform.is
...
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"
```
2024-09-25 00:04:37 +03:00
R. Ryantm
fa4850bc95
pyright: 1.1.380 -> 1.1.381
2024-09-24 00:13:08 +00:00
Gaetan Lepage
2cca527d4f
pylyzer: 0.0.61 -> 0.0.62
...
Diff: https://github.com/mtshiba/pylyzer/compare/refs/tags/v0.0.61...v0.0.62
Changelog: https://github.com/mtshiba/pylyzer/releases/tag/v0.0.62
2024-09-19 13:11:56 +02:00
Fabian Affolter
3022d8e8fc
pysqlrecon: 0.2.0 -> 0.3.0
...
Diff: https://github.com/Tw1sm/PySQLRecon/compare/refs/tags/v0.2.0...v0.3.0
Changelog: https://github.com/Tw1sm/PySQLRecon/blob/0.3.0/CHANGELOG.md
2024-09-17 16:37:31 +02:00
Robert Schütz
d33b553400
pytr: 0.2.2 -> 0.2.4 ( #340371 )
2024-09-15 11:20:06 -07:00
nicoo
2641d97cbf
pkgs/by-name: Convert hashes to SRI format
...
Reproduction script:
# Bulk rewrite
./maintainers/scripts/sha-to-sri.py pkgs/by-name
# Revert some packages which will need manual intervention
for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
git checkout -- "pkgs/by-name/${n:0:2}/${n}"
done
2024-09-15 11:24:31 +02:00
R. Ryantm
51b23f4d1f
pyright: 1.1.378 -> 1.1.380
2024-09-14 03:37:17 +00:00
Shawn8901
1ebdef25c2
pytr: 0.2.2 -> 0.2.4
2024-09-09 19:40:56 +02:00
R. Ryantm
52f210ec74
pyspread: 2.2.3 -> 2.3
2024-09-03 09:26:19 +00:00
Nikolay Korotkiy
a8fd5e2601
pyradio: migrate to by-name
2024-09-02 23:31:22 +04:00
R. Ryantm
0e050307f9
pyright: 1.1.377 -> 1.1.378
2024-08-28 08:03:38 +00:00
Robert Schütz
23e610bddc
pytr: init at 0.2.2
2024-08-25 12:40:26 -07:00
nixpkgs-merge-bot[bot]
920c63c163
Merge pull request #336508 from r-ryantm/auto-update/pyright
...
pyright: 1.1.376 -> 1.1.377
2024-08-22 11:41:09 +00:00
R. Ryantm
dc868e06af
pyright: 1.1.376 -> 1.1.377
2024-08-22 09:13:01 +00:00
Gaetan Lepage
f39985a8bd
pylyzer: 0.0.59 -> 0.0.61
...
Diff: https://github.com/mtshiba/pylyzer/compare/refs/tags/v0.0.59...v0.0.61
Changelog: https://github.com/mtshiba/pylyzer/releases/tag/v0.0.61
2024-08-20 16:52:24 +02:00
Gaetan Lepage
4d300bcf04
pylyzer: format
2024-08-16 10:17:01 +02:00
Gaetan Lepage
f287b2281a
pylyzer: move to pkgs/by-name
2024-08-16 10:06:33 +02:00
R. Ryantm
ba4823b644
pyright: 1.1.375 -> 1.1.376
2024-08-14 19:59:49 +00:00
R. Ryantm
ad04b40c86
pyright: 1.1.373 -> 1.1.375
2024-08-07 17:29:22 +00:00
TomaSajt
d8745ada2f
pyxel: 2.0.13 -> 2.1.6
2024-08-03 10:04:30 +02:00
R. Ryantm
f695337c7b
pyright: 1.1.370 -> 1.1.373
2024-07-26 21:37:24 +00:00
R. Ryantm
1825030216
pysqlrecon: 0.1.4 -> 0.2.0
2024-07-15 11:23:02 +00:00
Moraxyc
79227fe2bc
pywal16: 3.5.4 -> 3.6.0
2024-07-06 17:06:50 +08:00
nixpkgs-merge-bot[bot]
c9d9fd0c61
Merge pull request #324920 from r-ryantm/auto-update/pyright
...
pyright: 1.1.369 -> 1.1.370
2024-07-06 08:12:30 +00:00
R. Ryantm
a96a6ef5be
pyright: 1.1.369 -> 1.1.370
2024-07-05 23:04:01 +00:00
github-actions[bot]
6c668cb3e5
Merge master into staging-next
2024-07-03 09:24:52 +00:00
Weijia Wang
4c2e57d036
Merge pull request #319049 from azuwis/ibus-pinyin
...
ibus-engines.pinyin: init at 1.5.1
2024-07-03 11:03:35 +02:00