| 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: pytestFlagsArray -> pytestFlags and join flag and option argument•••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" ] ->
[ "-Wignore:message:WarningClass" ]
* [ "--reruns" "3" ] ->
[ "--reruns=3" ]
[1]: https://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
| Yueh-Shun Li | 2025-06-16 | 1 | -4/+3 |
| * | Merge remote-tracking branch 'origin/staging-next' into staging | K900 | 2024-11-22 | 1 | -6/+8 |
| |\ |
|
| | * | python312Packages.certbot-dns-ovh: ignore DeprecationWarning | Fabian Affolter | 2024-11-21 | 1 | -6/+8 |
| * | | python3Packages: disable pytest cache•••Instead of putting pytest's cache in a temporary directory, which will
never be re-used anyway - let's just disable it outright. This avoids
depending on bash eval in pytestFlagsArray, which we'd like to move away
from.
psycopg's testsuite somehow depends explicitly on this cache, thus we
keep it enabled there.
| Wolfgang Walther | 2024-11-09 | 1 | -1/+1 |
| |/ |
|
| * | python3Packages: format with nixfmt | Martin Weinelt | 2024-05-22 | 1 | -9/+8 |
| * | 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 |
| * | python3Packages.certbot-dns-ovh: init at 2.6.0 (follows certbot) | Antoine Viallon | 2023-09-29 | 1 | -0/+39 |