| Commit message (Expand) | Author | Age | Files | Lines |
| * | treewide: remove superfluous disabled•••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
| Robert Schütz | 2026-01-11 | 1 | -2/+0 |
| * | treewide: clean up 'meta = with' pattern•••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 <walther@technowledgy.de>
| Ihar Hrachyshka | 2025-12-10 | 1 | -2/+2 |
| * | treewide: remove unused with•••Auto-fixed by nixf-diagnose.
| Wolfgang Walther | 2025-10-05 | 1 | -1/+1 |
| * | treewide: substitute pname for strings (python3Packages.[a-g].*) | Peder Bergebakken Sundt | 2025-05-25 | 1 | -1/+1 |
| * | treewide: remove gebner from maintainers•••gebner has been an amazing maintainer, but appears to have moved on:
the last commit on nixpkgs appears to have been in Feb 2023, and
they have not been responding to pings (e.g.
https://github.com/NixOS/nixpkgs/issues/347764).
They also approved https://github.com/NixOS/nixpkgs/pull/337292 before,
but that PR had some additional changes and was closed without merging.
This PR is in no way intended to diminuish Gabriel's accomplishments,
and they're welcome to just say so if they'd prefer this PR not to
be merged. Also, even if it's merged, of course they're always welcome
to return to activity and be added back. The intent of this PR is to
give more realistic expectations around the maintainership of these
packages, and to invite others to step up for maintainership if they
rely on those packages.
This seems in line with https://github.com/NixOS/nixpkgs/tree/master/maintainers#how-to-lose-maintainer-status
| Arnout Engelen | 2025-03-11 | 1 | -1/+1 |
| * | treewide: migrate fetchgit `rev = "refs/tags/..."` to `tag` | Peder Bergebakken Sundt | 2025-01-04 | 1 | -1/+1 |
| * | python3Packages: format with nixfmt | Martin Weinelt | 2024-05-22 | 1 | -6/+7 |
| * | python311Packages.cachelib: 0.12.0 -> 0.13.0 | R. Ryantm | 2024-04-19 | 1 | -2/+2 |
| * | python3Packages.cachelib: 0.10.2 -> 0.12.0 | Martin Weinelt | 2024-03-12 | 1 | -2/+3 |
| * | python3.pkgs.*: Explicitly pass buildPythonPackage format parameter•••Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.
cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
| adisbladis | 2023-12-07 | 1 | -0/+1 |
| * | python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes.
| Martin Weinelt | 2023-03-03 | 1 | -1/+1 |
| * | python3Packages.cachelib: 0.9.0 -> 0.10.2 | Martin Weinelt | 2023-03-03 | 1 | -2/+7 |
| * | treewide: switch to nativeCheckInputs•••checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
| Guillaume Girol | 2023-01-21 | 1 | -1/+1 |
| * | python310Packages.cachelib: 0.8.0 -> 0.9.0 | R. Ryantm | 2022-06-27 | 1 | -2/+2 |
| * | python310Packages.cachelib: 0.7.0 -> 0.8.0 | R. Ryantm | 2022-06-14 | 1 | -2/+2 |
| * | python310Packages.cachelib: 0.6.0 -> 0.7.0 | R. Ryantm | 2022-05-16 | 1 | -3/+3 |
| * | python310Packages.cachelib: 0.5.0 -> 0.6.0 | R. Ryantm | 2022-02-12 | 1 | -2/+2 |
| * | python3Packages.cachelib: 0.3.0 -> 0.5.0 | Jonathan Ringer | 2022-01-23 | 1 | -2/+2 |
| * | python3Packages.cachelib: 0.2.0 -> 0.3.0 | Fabian Affolter | 2021-08-14 | 1 | -2/+2 |
| * | python3Packages.cachelib: enable tests | Fabian Affolter | 2021-07-09 | 1 | -4/+20 |
| * | python3Packages.cachelib: 0.1.1 -> 0.2.0 | Fabian Affolter | 2021-07-09 | 1 | -2/+2 |
| * | treewide: remove stdenv where not needed | Pavol Rusnak | 2021-01-25 | 1 | -1/+1 |
| * | treewide: with stdenv.lib; in meta -> with lib;•••Part of: https://github.com/NixOS/nixpkgs/issues/108938
meta = with stdenv.lib;
is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.
This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.
The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
| Profpatsch | 2021-01-11 | 1 | -2/+2 |
| * | python: cachelib: 0.1 -> 0.1.1 | Frederik Rietdijk | 2020-08-04 | 1 | -2/+2 |
| * | pythonPackages.cachelib: init at 0.1 | Gabriel Ebner | 2019-05-30 | 1 | -0/+18 |