| Commit message (Expand) | Author | Age | Files | Lines |
| * | 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 |
| * | python312Packages.agate-sql: disable crate integration test | FliegendeWurst | 2025-02-03 | 1 | -1/+5 |
| * | treewide: remove unused with statements from maintainer lists•••$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
-e 's!with lib.maintainers; \[ *\];![ ];!' \
-e 's!with maintainers; \[ *\];![ ];!'
| Jörg Thalheim | 2024-07-29 | 1 | -1/+1 |
| * | treewide: remove vrthra from meta.maintainers [all orphans]•••Tracking issue: https://github.com/NixOS/nixpkgs/issues/290642
Inactive since 2017
| Anderson Torres | 2024-07-07 | 1 | -1/+1 |
| * | treewide: Remove ending period from meta.description•••nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
| Alexis Hildebrandt | 2024-06-09 | 1 | -1/+1 |
| * | python3Packages: format with nixfmt | Martin Weinelt | 2024-05-22 | 1 | -11/+19 |
| * | python311Packages.agate-sql: 0.7.0 -> 0.7.2 | R. Ryantm | 2024-01-20 | 1 | -2/+2 |
| * | 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 |
| * | python311Packages.agate-sql: unbreak | OTABI Tomoya | 2023-10-20 | 1 | -2/+0 |
| * | python311Packages.agate-sql: 0.5.9 -> 0.7.0 | R. Ryantm | 2023-10-19 | 1 | -2/+2 |
| * | python310Packages.agate-sql: Mark broken with sqlachemy 2.0•••The upstream explicitly pins sqlalchemy<2, so supporting it is not
possible right now. Application can downgrade sqlalchemy instead.
| Martin Weinelt | 2023-03-09 | 1 | -0/+2 |
| * | python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes.
| Martin Weinelt | 2023-03-03 | 1 | -1/+1 |
| * | python310Packages.agate-sql: 0.5.8 -> 0.5.9 | R. Ryantm | 2023-01-30 | 1 | -2/+2 |
| * | 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 |
| * | python3Packages.agate-sql: reenable test and use pytest instead of nose | Martin Weinelt | 2022-07-21 | 1 | -10/+2 |
| * | python38Packages.agate-sql: 0.5.7 -> 0.5.8 | R. RyanTM | 2021-09-17 | 1 | -2/+2 |
| * | python38Packages.agate-sql: 0.5.6 -> 0.5.7 | R. RyanTM | 2021-08-13 | 1 | -2/+2 |
| * | pythonPackages.crate: mark broken (#130017) | Guillaume Maudoux | 2021-07-20 | 1 | -0/+4 |
| * | python3Packages.agate-sql: use fetchPypi | Robert Schütz | 2021-03-12 | 1 | -6/+4 |
| * | python3Packages.agate-sql: 0.5.5 -> 0.5.6 | Robert Schütz | 2021-03-08 | 1 | -8/+25 |
| * | pythonPackages.agate-sql: format, add pythonImportsCheck, mark broken | Sandro Jäckel | 2021-03-08 | 1 | -13/+17 |
| * | 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.pkgs.agate-sql: fix tests by adding crate to inputs | Doron Behar | 2020-09-20 | 1 | -2/+2 |
| * | python: agate-sql: 0.5.4 -> 0.5.5 | Frederik Rietdijk | 2020-08-04 | 1 | -2/+2 |
| * | treewide: Per RFC45, remove all unquoted URLs | Michael Reilly | 2020-04-10 | 1 | -1/+1 |
| * | python: agate-sql: 0.5.3 -> 0.5.4 | Frederik Rietdijk | 2019-04-18 | 1 | -2/+2 |
| * | pythonPackages: remove `name` attribute`•••The `buildPython*` function computes name from `pname` and `version`.
This change removes `name` attribute from all expressions in
`pkgs/development/python-modules`.
While at it, some other minor changes were made as well, such as
replacing `fetchurl` calls with `fetchPypi`.
| Frederik Rietdijk | 2018-06-23 | 1 | -1/+0 |
| * | python: agate-sql: 0.5.2 -> 0.5.3 | Frederik Rietdijk | 2018-02-03 | 1 | -2/+2 |
| * | agate-sql: refactor | Rahul Gopinath | 2017-05-03 | 1 | -0/+21 |