summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/certbot-dns-ovh (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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ütz2026-01-111-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 Li2025-06-161-4/+3
* Merge remote-tracking branch 'origin/staging-next' into stagingK9002024-11-221-6/+8
|\
| * python312Packages.certbot-dns-ovh: ignore DeprecationWarningFabian Affolter2024-11-211-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 Walther2024-11-091-1/+1
|/
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-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 adisbladis2023-12-071-0/+1
* python3Packages.certbot-dns-ovh: init at 2.6.0 (follows certbot)Antoine Viallon2023-09-291-0/+39