| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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 | -3/+3 |
| * | python312Packages.clustershell: install shell completion files•••Available since version 1.9.3. | Bjørn Forsman | 2025-01-31 | 1 | -0/+7 |
| * | python312Packages.clustershell: 1.9.2 -> 1.9.3•••https://github.com/cea-hpc/clustershell/releases/tag/v1.9.3 | Bjørn Forsman | 2025-01-31 | 1 | -2/+2 |
| * | 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.clustershell: drop nose dependency | Sigmanificient | 2024-08-24 | 1 | -43/+26 |
| * | python311Packages.clustershell: disable tests•••They get stuck much too often and block slots on hydra. | Martin Weinelt | 2024-06-24 | 1 | -0/+2 |
| * | python3Packages.clustershell: remove blocking test•••remove tests/TreeGatewayTest.py because it does not return. apparently def wait(self): """wait for task/thread termination""" # can be blocked indefinitely if StreamWorker doesn't complete self.task.join() does apply in nix sandbox fixes #315146 | Frank Doepper | 2024-06-19 | 1 | -5/+1 |
| * | python3Packages: format with nixfmt | Martin Weinelt | 2024-05-22 | 1 | -10/+11 |
| * | python312Packages.clustershell: normalize pname | Felix Buehler | 2024-03-14 | 1 | -2/+3 |
| * | python3Packages.clustershell: 1.9.1 -> 1.9.2 | Bjørn Forsman | 2023-10-06 | 1 | -2/+2 |
| * | python3Packages.clustershell: unmark as broken on aarch64-linux | Kirill Radzikhovskyy | 2023-06-16 | 1 | -1/+1 |
| * | python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. | Martin Weinelt | 2023-03-03 | 1 | -1/+1 |
| * | python310Packages.clustershell: 1.9 -> 1.9.1 | R. Ryantm | 2023-02-12 | 1 | -2/+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 |
| * | python3Packages.ClusterShell: 1.8.4 -> 1.9 | Martin Weinelt | 2023-01-05 | 1 | -2/+2 |
| * | python310Packages.clustershell: Fix tests | Jonas Heinrich | 2022-08-07 | 1 | -19/+36 |
| * | treewide: pkgs/development/python-modules: mark broken for aarch64-linux | Rick van Schijndel | 2022-05-30 | 1 | -1/+1 |
| * | treewide: pkgs/development/python-modules: mark broken for darwin | Rick van Schijndel | 2022-05-30 | 1 | -1/+2 |
| * | python38Packages.clustershell: 1.8.3 -> 1.8.4 | R. Ryantm | 2021-11-14 | 1 | -2/+2 |
| * | treewide: remove stdenv where not needed | Pavol Rusnak | 2021-01-25 | 1 | -1/+1 |
| * | treewide: with stdenv.lib; in meta -> with lib;•••Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix | Profpatsch | 2021-01-11 | 1 | -2/+2 |
| * | treewide: Per RFC45, remove all unquoted URLs | Michael Reilly | 2020-04-10 | 1 | -1/+1 |
| * | python: ClusterShell: 1.8.1 -> 1.8.3 | Frederik Rietdijk | 2019-12-30 | 1 | -2/+2 |
| * | python: ClusterShell: 1.8 -> 1.8.1 | Frederik Rietdijk | 2018-12-03 | 1 | -2/+2 |
| * | pythonPackages.clustershell: init at 1.8 | Alex Vorobiev | 2018-06-18 | 1 | -0/+89 |
