| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-01-11 | treewide: remove superfluous disabled | Robert Schütz | |
| 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 | |||
| 2025-06-16 | treewide: pytestFlagsArray -> pytestFlags and join flag and option argument | Yueh-Shun Li | |
| 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 | |||
| 2024-05-22 | python3Packages: format with nixfmt | Martin Weinelt | |
| 2023-12-20 | python312Packages.aspectlib: ignore deprecation warnings in tests | natsukium | |
| 2023-02-26 | python310Packages.aspectlib: init at 2.0.0 | Robert Schütz | |
