| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | python3Packages.datafusion: skip flaky test on darwin | Gaetan Lepage | 2025-12-23 | 1 | -0/+5 |
| * | python3Packages.datafusion: 50.0.0 -> 50.1.0 | R. Ryantm | 2025-11-01 | 1 | -3/+3 |
| * | python3Packages.datafusion: 49.0.0 -> 50.0.0 | R. Ryantm | 2025-10-02 | 1 | -3/+3 |
| * | python3Packages.datafusion: 48.0.0 -> 49.0.0 | R. Ryantm | 2025-09-21 | 1 | -3/+3 |
| * | python3Packages.datafusion: 40.1.0 -> 48.0.0•••Diff: https://github.com/apache/arrow-datafusion-python/compare/40.1.0...48.0.0 Changelog: https://github.com/apache/arrow-datafusion-python/blob/48.0.0/CHANGELOG.md | Gaetan Lepage | 2025-09-19 | 1 | -47/+31 |
| * | treewide: run nixfmt 1.0.0 | Wolfgang Walther | 2025-07-24 | 1 | -5/+6 |
| * | 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 | -1/+1 |
| * | treewide: remove usage of deprecated apple_sdk framework stubs•••They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com> | Ihar Hrachyshka | 2025-04-19 | 1 | -4/+0 |
| * | python313Packages.datafusion: fix build•••fixes https://hydra.nixos.org/build/290691235 | Peder Bergebakken Sundt | 2025-03-04 | 1 | -1/+2 |
| * | python3Packages.datafusion: fetchCargoTarball -> fetchCargoVendor•••Cargo 1.84.0 seems to have changed the output format of cargo vendor again, once again invalidating fetchCargoTarball FOD hashes. It's time to fix this once and for all, switching across the board to fetchCargoVendor, which is not dependent on cargo vendor's output format. | Alyssa Ross | 2025-01-26 | 1 | -2/+2 |
| * | treewide: migrate fetchgit `rev = "refs/tags/..."` to `tag` | Peder Bergebakken Sundt | 2025-01-04 | 1 | -1/+1 |
| * | python3.pkgs.datafusion: add protoc | Phillip Cloud | 2024-11-06 | 1 | -0/+2 |
| * | python3.pkgs.datafusion: clean up `typing-extensions` dependency specification | Phillip Cloud | 2024-09-30 | 1 | -6/+6 |
| * | 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.datafusion: 38.0.1 -> 40.1.0•••Diff: https://github.com/apache/arrow-datafusion-python/compare/refs/tags/38.0.1...40.1.0 Changelog: https://github.com/apache/arrow-datafusion-python/blob/40.1.0/CHANGELOG.md | Fabian Affolter | 2024-09-15 | 1 | -4/+10 |
| * | treewide: remove existing usages of pname+version in fetchCargoTarball•••This is done because the existing fetchCargoTarball does not support pname or version, resulting in a vendor tarball with the name cargo-deps-vendor.tar.gz. Since adding pname+version support would change the name of the derivation, and therefore its hash, we remove existing usages to avoid treewide breakage. | éclairevoyant | 2024-09-07 | 1 | -1/+1 |
| * | python311Packages.datafusion: 35.0.0 -> 38.0.1•••Diff: https://github.com/apache/arrow-datafusion-python/compare/refs/tags/35.0.0...38.0.1 Changelog: https://github.com/apache/arrow-datafusion-python/blob/38.0.1/CHANGELOG.md | Fabian Affolter | 2024-06-09 | 1 | -4/+4 |
| * | python3Packages: format with nixfmt | Martin Weinelt | 2024-05-22 | 1 | -19/+28 |
| * | python3Packages.datafusion: 25.0.0 -> 35.0.0•••Also added SystemConfiguration since it seems to depend on it in Darwin | Elle Najt | 2024-02-16 | 1 | -4/+9 |
| * | python3Packages.datafusion: 23.0.0 -> 25.0.0 | Phillip Cloud | 2023-06-08 | 1 | -8/+7 |
| * | python311Packages.datafusion: add changelog to meta | Fabian Affolter | 2023-05-01 | 1 | -1/+2 |
| * | python311Packages.datafusion: 22.0.0 -> 23.0.0•••Diff: https://github.com/apache/arrow-datafusion-python/compare/22.0.0...23.0.0 | Fabian Affolter | 2023-05-01 | 1 | -4/+4 |
| * | python3Packages.datafusion: fix darwin build | happysalada | 2023-04-16 | 1 | -1/+2 |
| * | python3Packages.datafusion: 0.7.0 -> 22.0.0 | Phillip Cloud | 2023-04-15 | 1 | -18/+19 |
| * | python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. | Martin Weinelt | 2023-03-03 | 1 | -2/+2 |
| * | python3Packages.datafusion: 0.4.0 -> 0.7.0 | Lily Foster | 2023-01-22 | 2 | -112/+27 |
| * | 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 |
| * | python3Packages.datafusion: init at 0.4.0 (#152763) | Phillip Cloud | 2022-01-25 | 2 | -0/+168 |
