summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/build (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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 Daniels2026-01-121-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 Hrachyshka2025-12-101-4/+4
* python3Packages.build: 1.2.2.post1 -> 1.3.0•••https://github.com/pypa/build/blob/1.3.0/CHANGELOG.rst Martin Weinelt2025-08-091-13/+8
* treewide: run nixfmt 1.0.0Wolfgang Walther2025-07-241-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 Li2025-06-161-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 Rodrigues2025-04-251-1/+2
* python312Packages.build: 1.2.2 -> 1.2.2.post1•••https://github.com/pypa/build/blob/1.2.2.post1/CHANGELOG.rst Martin Weinelt2024-10-241-2/+2
* Merge branch 'master' into staging-nextArtturin2024-09-251-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" ``` Artturin2024-09-251-1/+1
* | python312Packages.build: 1.2.1 -> 1.2.2•••https://github.com/pypa/build/blob/1.2.2/CHANGELOG.rst Martin Weinelt2024-09-101-2/+7
|/
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-39/+36
* python312Packages.build: 1.1.1 -> 1.2.1•••https://github.com/pypa/build/blob/1.2.1/CHANGELOG.rst Martin Weinelt2024-04-221-2/+2
* python311Packages.build: 1.0.3 -> 1.1.1•••https://github.com/pypa/build/blob/1.1.1/CHANGELOG.rst Martin Weinelt2024-03-121-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 Weinelt2023-12-201-0/+5
* python311Packages.build: fix testsMartin Weinelt2023-09-271-3/+3
* python311Packages.build: 0.10.0 -> 1.0.3•••https://github.com/pypa/build/blob/1.0.3/CHANGELOG.rst Martin Weinelt2023-09-271-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 Ni2023-08-201-27/+44
* python3.pkgs.build: add python team to maintainersTheodore Ni2023-08-071-1/+1
* python3Packages.build: specify mainProgramMike Purvis2023-05-091-0/+1
* python310Packages.build: 0.9.0 -> 0.10.0•••https://github.com/pypa/build/blob/0.10.0/CHANGELOG.rst Martin Weinelt2023-03-031-9/+10
* python3Packages.build: Fix build after pytest-rerunfailures updateMartin Weinelt2023-02-021-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 Girol2023-01-211-1/+1
* python310Packages.build: 0.8.0 -> 0.9.0Fabian Affolter2022-10-281-2/+2
* python3Packages.build: migrate to setuptools build-systemMartin Weinelt2022-09-191-1/+1
* python3Packages.build: uses setuptools instead of flit as build systemFrederik Rietdijk2022-09-161-2/+2
* python310Packages.build: 0.7.0 -> 0.8.0Fabian Affolter2022-05-241-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 Weinelt2022-04-151-2/+0
* python3Packages.build: ignore DeprecationWarningFabian Affolter2022-01-171-0/+2
* python3Packages.build: 0.5.1 -> 0.7.0Fabian Affolter2021-12-031-13/+23
* python3Packages.build: skip test failing on darwinRobert Scott2021-11-131-0/+4
* python3Packages.build: 0.3.0 -> 0.5.1Fabian Affolter2021-07-171-12/+12
* python2Packages.typing: we no longer need it for Python 3Frederik Rietdijk2021-04-031-1/+1
* python3Packages.build: enable testsFabian Affolter2021-03-081-9/+30
* python3Packages.build: 0.0.3.1 -> 0.1.0Fabian Affolter2021-01-231-1/+1
* python3Packages.build: adjust metaFabian Affolter2021-01-231-3/+9
* pythonPackages.build: 0.0.3.1 -> 0.1.0Sandro Jäckel2021-01-161-2/+2
* python: editorconfig fixeszowoq2020-08-271-1/+1
* python.pkgs.build: init at 0.0.3.1Frederik Rietdijk2020-06-111-0/+46