summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/cmd2 (follow)
Commit message (Expand)AuthorAgeFilesLines
* python312Packages.cmd2: 2.5.9 -> 2.5.11R. Ryantm2025-02-151-2/+2
* python312Packages.cmd2: add missed dependency on DarwinK9002025-02-051-1/+2
* python3Packages.cmd2: 2.4.3 -> 2.5.9•••https://github.com/python-cmd2/cmd2/releases/tag/2.5.9 Martin Weinelt2025-01-271-32/+23
* 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-2/+2
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-40/+41
* python310Packages.cmd2: add changelog to metaFabian Affolter2023-03-031-3/+7
* python3Packages.cmd2: 2.4.2 -> 2.4.3Martin Weinelt2023-03-031-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.cmd2: 2.4.0 -> 2.4.2Martin Weinelt2022-07-211-2/+2
* python3Packages.cmd2: don't require vim for tests•••It causes a huge rebuild chain when updating vim, that affects, among others qemu and ceph. Martin Weinelt2022-07-091-2/+6
* python3Packages.cmd2: 2.3.3 -> 2.4.0Martin Weinelt2022-03-141-2/+2
* python3Packages.cmd2: 2.3.2 -> 2.3.3Jonathan Ringer2021-12-141-2/+2
* python3Packages.cmd2: 2.2.0 -> 2.3.2Jonathan Ringer2021-11-301-2/+2
* python3Packages.cmd2: 2.1.2 -> 2.2.0Martin Weinelt2021-10-111-2/+2
* python3Packages.cmd2: add licenseFabian Affolter2021-09-221-0/+1
* python3Packages.cmd2: fix buildFabian Affolter2021-09-051-31/+44
* python3Packages.cmd2: 1.5.0 -> 2.1.2Martin Weinelt2021-09-051-2/+2
* treewide: ensure pre/post phase hooks are strings•••Some derivations use lib.optional or lib.optionals when setting pre/post phase hooks. Ensure the proper lib.optionalString is used. Sebastián Mancilla2021-08-201-1/+1
* treewide: setuptools_scm -> setuptools-scmSandro Jäckel2021-06-031-2/+2
* python37Packages.cmd2: 1.4.0 -> 1.5.0R. RyanTM2021-02-021-2/+2
* pkgs/development/python-modules: stdenv.lib -> libPavol Rusnak2021-01-241-3/+3
* 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
* python37Packages.cmd2: 1.3.11 -> 1.4.0R. RyanTM2020-11-151-2/+2
* python37Packages.cmd2: 1.3.10 -> 1.3.11R. RyanTM2020-10-151-2/+2
* python37Packages.cmd2: 1.3.8 -> 1.3.10R. RyanTM2020-09-281-2/+2
* python3Packages.cmd2: 1.3.3 -> 1.3.8Frederik Rietdijk2020-08-291-2/+2
* python: cmd2: 1.0.2 -> 1.3.3Frederik Rietdijk2020-08-161-2/+2
* python37Packages.cmd2: 1.0.1 -> 1.0.2R. RyanTM2020-05-061-2/+2
* python37Packages.cmd2: 1.0.0 -> 1.0.1R. RyanTM2020-04-061-3/+3
* python3Packages.cmd2: 0.9.25 -> 1.0.0•••https://github.com/python-cmd2/cmd2/releases/tag/1.0.0 Matthieu Coudron2020-03-041-2/+2
* python3.pkgs.cmd2: fix shebang•••The bang was missing! What was there before would still have worked, but I think it would end up being executed by /bin/sh since it had no shebang line. Alyssa Ross2020-02-141-2/+2
* python37Packages.cmd2: 0.9.23 -> 0.9.25R. RyanTM2020-02-091-2/+2
* python37Packages.cmd2: 0.9.22 -> 0.9.23R. RyanTM2020-01-221-2/+2
* python: cmd2: 0.9.21 -> 0.9.22Frederik Rietdijk2019-12-151-2/+2
* python38Packages.cmd2: 0.9.20 -> 0.9.21R. RyanTM2019-12-081-2/+2
* python3Packages.cmd2: 0.19.0 -> 0.20.0Matthieu Coudron2019-11-191-2/+2
* python: cmd2: 0.9.17 -> 0.9.19Frederik Rietdijk2019-10-181-2/+2
* pythonPackages.cmd2: 0.9.16 -> 0.9.17•••Changelog https://github.com/python-cmd2/cmd2/blob/master/CHANGELOG.md Matthieu Coudron2019-09-261-2/+2
* python37Packages.cmd2: 0.9.15 -> 0.9.16•••Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-cmd2/versions R. RyanTM2019-08-201-2/+2
* python3Packages.cmd2: 0.9.14 -> 0.9.15•••API changes quite a bit: https://github.com/python-cmd2/cmd2/blob/0.9.15/CHANGELOG.md Matthieu Coudron2019-08-021-2/+2
* python37Packages.cmd2: 0.9.13 -> 0.9.14•••Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-cmd2/versions R. RyanTM2019-07-021-2/+2
* python: cmd2: 0.9.12 -> 0.9.13Frederik Rietdijk2019-06-151-2/+2
* pythonPackages.cmd2_8: removeRobert Scott2019-06-121-50/+0
* python3Packages.cmd2: 0.9.11 -> 0.9.12•••Changelog: https://github.com/python-cmd2/cmd2/blob/master/CHANGELOG.md Matthieu Coudron2019-04-231-2/+2
* python37Packages.cmd2: 0.9.10 -> 0.9.11•••Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-cmd2/versions R. RyanTM2019-04-021-2/+2
* Merge staging-next into masterFrederik Rietdijk2019-03-011-2/+2
|\
| * python: cmd2: 0.9.8 -> 0.9.10Frederik Rietdijk2019-02-231-2/+2
| * python: cmd2: 0.9.7 -> 0.9.8Frederik Rietdijk2019-02-171-2/+2
* | treewide: use runtimeShell instead of stdenv.shell whenever possible•••Whenever we create scripts that are installed to $out, we must use runtimeShell in order to get the shell that can be executed on the machine we create the package for. This is relevant for cross-compiling. The only use case for stdenv.shell are scripts that are executed as part of the build system. Usages in checkPhase are borderline however to decrease the likelyhood of people copying the wrong examples, I decided to use runtimeShell as well. Jörg Thalheim2019-02-261-2/+3
|/
* Merge pull request #54094 from rnhmjoj/shell•••treewide: use ${stdenv.shell} instead of /bin/sh where possibleFrederik Rietdijk2019-01-192-4/+4
|\