summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/clustershell (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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-3/+3
* python312Packages.clustershell: install shell completion files•••Available since version 1.9.3. Bjørn Forsman2025-01-311-0/+7
* python312Packages.clustershell: 1.9.2 -> 1.9.3•••https://github.com/cea-hpc/clustershell/releases/tag/v1.9.3 Bjørn Forsman2025-01-311-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" ``` Artturin2024-09-251-1/+1
* python312Packages.clustershell: drop nose dependencySigmanificient2024-08-241-43/+26
* python311Packages.clustershell: disable tests•••They get stuck much too often and block slots on hydra. Martin Weinelt2024-06-241-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 Doepper2024-06-191-5/+1
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-10/+11
* python312Packages.clustershell: normalize pnameFelix Buehler2024-03-141-2/+3
* python3Packages.clustershell: 1.9.1 -> 1.9.2Bjørn Forsman2023-10-061-2/+2
* python3Packages.clustershell: unmark as broken on aarch64-linuxKirill Radzikhovskyy2023-06-161-1/+1
* python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. Martin Weinelt2023-03-031-1/+1
* python310Packages.clustershell: 1.9 -> 1.9.1R. Ryantm2023-02-121-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 Girol2023-01-211-1/+1
* python3Packages.ClusterShell: 1.8.4 -> 1.9Martin Weinelt2023-01-051-2/+2
* python310Packages.clustershell: Fix testsJonas Heinrich2022-08-071-19/+36
* treewide: pkgs/development/python-modules: mark broken for aarch64-linuxRick van Schijndel2022-05-301-1/+1
* treewide: pkgs/development/python-modules: mark broken for darwinRick van Schijndel2022-05-301-1/+2
* python38Packages.clustershell: 1.8.3 -> 1.8.4R. Ryantm2021-11-141-2/+2
* treewide: remove stdenv where not neededPavol Rusnak2021-01-251-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 Profpatsch2021-01-111-2/+2
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-101-1/+1
* python: ClusterShell: 1.8.1 -> 1.8.3Frederik Rietdijk2019-12-301-2/+2
* python: ClusterShell: 1.8 -> 1.8.1Frederik Rietdijk2018-12-031-2/+2
* pythonPackages.clustershell: init at 1.8Alex Vorobiev2018-06-181-0/+89