| 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 | -3/+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 | -3/+3 |
| * | python313Packages.bumps: 1.0.2 -> 1.0.3•••Changelog: https://github.com/bumps/bumps/releases/tag/v1.0.3
| Fabian Affolter | 2025-09-27 | 1 | -17/+21 |
| * | python3Packages.bumps: use pyproject, add missing deps, unbreak | Peder Bergebakken Sundt | 2025-09-03 | 1 | -2/+37 |
| * | python3Packages.bumps: 0.9.3 -> 1.0.2•••https://github.com/bumps/bumps/releases/tag/v1.0.2
This commit was automatically generated using update-python-libraries.
| Martin Weinelt | 2025-08-09 | 1 | -2/+2 |
| * | python312Packages.bumps: 0.9.2 -> 0.9.3 | R. Ryantm | 2024-07-10 | 1 | -2/+2 |
| * | python3Packages: format with nixfmt | Martin Weinelt | 2024-05-22 | 1 | -7/+6 |
| * | treewide: add meta.mainProgram to packages with a single binary•••The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
| stuebinm | 2024-03-19 | 1 | -0/+1 |
| * | python311Packages.bumps: 0.9.1 -> 0.9.2 | R. Ryantm | 2024-03-07 | 1 | -7/+2 |
| * | python310Packages.bumps: add changelog to meta | Fabian Affolter | 2023-04-28 | 1 | -0/+1 |
| * | python310Packages.bumps: 0.9.0 -> 0.9.1 | Fabian Affolter | 2023-04-28 | 1 | -2/+2 |
| * | python3Packages.bumps: add pythonImportsCheck•••- update meta
- disable on older Python releases | Fabian Affolter | 2022-03-16 | 1 | -9/+22 |
| * | python310Packages.bumps: 0.8.1 -> 0.9.0 | R. Ryantm | 2022-03-16 | 1 | -2/+2 |
| * | python3Packages.bumps: 0.8.0 -> 0.8.1 | Jonathan Ringer | 2021-11-30 | 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 |
| * | python37Packages.bumps: 0.7.18 -> 0.8.0 | R. RyanTM | 2020-12-23 | 1 | -2/+2 |
| * | python27Packages.bumps: 0.7.16 -> 0.7.18 | R. RyanTM | 2020-11-29 | 1 | -2/+2 |
| * | treewide: fix redirected urls (run 3)•••Related:
- 9fc5e7e473874762fdb1b49d17dcf703d48352c3
- 593e11fd944ce961ecf5425c3540df09e4f52265
- 508ae42a0f64c350036d722b84c2e2905bbc5418
Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).
Here's the new script I used:
```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
| jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
| sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
I will also add this script to `maintainers/scripts`.
| Patrick Hilhorst | 2020-10-02 | 1 | -1/+1 |
| * | python: bumps: 0.7.14 -> 0.7.16 | Frederik Rietdijk | 2020-08-04 | 1 | -2/+2 |
| * | treewide: Per RFC45, remove all unquoted URLs | Michael Reilly | 2020-04-10 | 1 | -1/+1 |
| * | python27Packages.bumps: 0.7.13 -> 0.7.14 | R. RyanTM | 2020-01-22 | 1 | -2/+2 |
| * | python: bumps: 0.7.12 -> 0.7.13 | Frederik Rietdijk | 2019-10-18 | 1 | -2/+2 |
| * | python37Packages.bumps: 0.7.11 -> 0.7.12•••Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-bumps/versions
| R. RyanTM | 2019-09-28 | 1 | -2/+2 |
| * | python: bumps: 0.7.10 -> 0.7.11 | Frederik Rietdijk | 2018-10-13 | 1 | -2/+2 |
| * | python: bumps: 0.7.8 -> 0.7.10 | Frederik Rietdijk | 2018-07-22 | 1 | -2/+2 |
| * | python: bumps: 0.7.6 -> 0.7.8 | Frederik Rietdijk | 2018-06-02 | 1 | -2/+2 |
| * | Remove lint from Sasview package | Adam Washington | 2018-03-22 | 1 | -1/+0 |
| * | pythonPackage.bumps: init at 0.7.6•••This package is required by SasView, which will be added in a later commit.
| Adam Washington | 2018-03-09 | 1 | -0/+25 |