| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | treewide: change 'format = "other";' to 'pyproject = false;'•••Entirely find-and-replace based. A few usages that would cause rebuilds if changed remain. This PR should have 0 rebuilds. | Michael Daniels | 2026-01-12 | 1 | -1/+1 |
| * | 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 | -4/+4 |
| * | python3Packages.build: 1.2.2.post1 -> 1.3.0•••https://github.com/pypa/build/blob/1.3.0/CHANGELOG.rst | Martin Weinelt | 2025-08-09 | 1 | -13/+8 |
| * | treewide: run nixfmt 1.0.0 | Wolfgang Walther | 2025-07-24 | 1 | -19/+19 |
| * | 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 | -3/+2 |
| * | treewide: switch instances of lib.teams.*.members to the new meta.teams attri...•••Follow-up to #394797. Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net> | Fernando Rodrigues | 2025-04-25 | 1 | -1/+2 |
| * | python312Packages.build: 1.2.2 -> 1.2.2.post1•••https://github.com/pypa/build/blob/1.2.2.post1/CHANGELOG.rst | Martin Weinelt | 2024-10-24 | 1 | -2/+2 |
| * | Merge branch 'master' into staging-next | Artturin | 2024-09-25 | 1 | -1/+1 |
| |\ | |||||
| | * | treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`•••In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ``` | Artturin | 2024-09-25 | 1 | -1/+1 |
| * | | python312Packages.build: 1.2.1 -> 1.2.2•••https://github.com/pypa/build/blob/1.2.2/CHANGELOG.rst | Martin Weinelt | 2024-09-10 | 1 | -2/+7 |
| |/ | |||||
| * | python3Packages: format with nixfmt | Martin Weinelt | 2024-05-22 | 1 | -39/+36 |
| * | python312Packages.build: 1.1.1 -> 1.2.1•••https://github.com/pypa/build/blob/1.2.1/CHANGELOG.rst | Martin Weinelt | 2024-04-22 | 1 | -2/+2 |
| * | python311Packages.build: 1.0.3 -> 1.1.1•••https://github.com/pypa/build/blob/1.1.1/CHANGELOG.rst | Martin Weinelt | 2024-03-12 | 1 | -1/+1 |
| * | python39Packages.build: drop dependency on importlib-metadata•••It is not strictly required, but it causes a circular dependency cycle on Python<3.10. | Martin Weinelt | 2023-12-20 | 1 | -0/+5 |
| * | python311Packages.build: fix tests | Martin Weinelt | 2023-09-27 | 1 | -3/+3 |
| * | python311Packages.build: 0.10.0 -> 1.0.3•••https://github.com/pypa/build/blob/1.0.3/CHANGELOG.rst | Martin Weinelt | 2023-09-27 | 1 | -5/+5 |
| * | python3.pkgs.build: move tests to passthru•••While build is built using bootstrap packages, none of its test dependencies should be, so we must move out of the derivation. | Theodore Ni | 2023-08-20 | 1 | -27/+44 |
| * | python3.pkgs.build: add python team to maintainers | Theodore Ni | 2023-08-07 | 1 | -1/+1 |
| * | python3Packages.build: specify mainProgram | Mike Purvis | 2023-05-09 | 1 | -0/+1 |
| * | python310Packages.build: 0.9.0 -> 0.10.0•••https://github.com/pypa/build/blob/0.10.0/CHANGELOG.rst | Martin Weinelt | 2023-03-03 | 1 | -9/+10 |
| * | python3Packages.build: Fix build after pytest-rerunfailures update | Martin Weinelt | 2023-02-02 | 1 | -0/+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 |
| * | python310Packages.build: 0.8.0 -> 0.9.0 | Fabian Affolter | 2022-10-28 | 1 | -2/+2 |
| * | python3Packages.build: migrate to setuptools build-system | Martin Weinelt | 2022-09-19 | 1 | -1/+1 |
| * | python3Packages.build: uses setuptools instead of flit as build system | Frederik Rietdijk | 2022-09-16 | 1 | -2/+2 |
| * | python310Packages.build: 0.7.0 -> 0.8.0 | Fabian Affolter | 2022-05-24 | 1 | -2/+2 |
| * | treewide: remove redundant numprocesses pytest-xdist parameter•••Including the pytest-xdist package automatically configures numprocesses to $NIX_BUILD_CORES, so specifying these on a package level has become redundant. | Martin Weinelt | 2022-04-15 | 1 | -2/+0 |
| * | python3Packages.build: ignore DeprecationWarning | Fabian Affolter | 2022-01-17 | 1 | -0/+2 |
| * | python3Packages.build: 0.5.1 -> 0.7.0 | Fabian Affolter | 2021-12-03 | 1 | -13/+23 |
| * | python3Packages.build: skip test failing on darwin | Robert Scott | 2021-11-13 | 1 | -0/+4 |
| * | python3Packages.build: 0.3.0 -> 0.5.1 | Fabian Affolter | 2021-07-17 | 1 | -12/+12 |
| * | python2Packages.typing: we no longer need it for Python 3 | Frederik Rietdijk | 2021-04-03 | 1 | -1/+1 |
| * | python3Packages.build: enable tests | Fabian Affolter | 2021-03-08 | 1 | -9/+30 |
| * | python3Packages.build: 0.0.3.1 -> 0.1.0 | Fabian Affolter | 2021-01-23 | 1 | -1/+1 |
| * | python3Packages.build: adjust meta | Fabian Affolter | 2021-01-23 | 1 | -3/+9 |
| * | pythonPackages.build: 0.0.3.1 -> 0.1.0 | Sandro Jäckel | 2021-01-16 | 1 | -2/+2 |
| * | python: editorconfig fixes | zowoq | 2020-08-27 | 1 | -1/+1 |
| * | python.pkgs.build: init at 0.0.3.1 | Frederik Rietdijk | 2020-06-11 | 1 | -0/+46 |
