nixpkgs/pkgs/top-level/python2-packages.nix
Peder Bergebakken Sundt 5aba99242e treewide: fix typos in comments
Made with

```shell
git restore .
fd '\.nix$' pkgs/ --type f -j1 -x bash -xc "$(cat <<"EOF"
    typos --no-check-filenames --write-changes "$1"
    git diff --exit-code "$1" && exit
    #( git diff "$1" | grep -qE "^\+ +[^# ]") && git restore "$1"
    count1="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> ' | wc -l )"
    count2="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> (<span style="color:#f8f8f2;"> *</span>)?<span style="color:#75715e;">.*</span>$' | wc -l )"
    [[ $count1 -ne $count2 ]] && git restore "$1"
EOF
)" -- {}
```

and filtered with `GIT_DIFF_OPTS='--unified=15' git -c interactive.singleKey=true add --patch`

I initially tried using the tree-sitter cli, python bindings and even ast-grep through various means, but this is what I ended up with.
2025-02-24 10:44:41 +01:00

103 lines
3.1 KiB
Nix

# Extension with Python 2 packages that is overlaid on top
# of the Python 3 packages set. This way, Python 2+3 compatible
# packages can still be used.
self: super:
with self;
with super;
{
attrs = callPackage ../development/python2-modules/attrs { };
backports-functools-lru-cache =
callPackage ../development/python2-modules/backports-functools-lru-cache
{ };
bootstrapped-pip = toPythonModule (callPackage ../development/python2-modules/bootstrapped-pip { });
cffi = callPackage ../development/python2-modules/cffi { inherit cffi; };
configparser = callPackage ../development/python2-modules/configparser { };
contextlib2 = callPackage ../development/python2-modules/contextlib2 { };
coverage = callPackage ../development/python2-modules/coverage { };
enum = callPackage ../development/python2-modules/enum { };
filelock = callPackage ../development/python2-modules/filelock { };
futures = callPackage ../development/python2-modules/futures { };
hypothesis = callPackage ../development/python2-modules/hypothesis { };
importlib-metadata = callPackage ../development/python2-modules/importlib-metadata { };
jinja2 = callPackage ../development/python2-modules/jinja2 { };
markupsafe = callPackage ../development/python2-modules/markupsafe { };
mock = callPackage ../development/python2-modules/mock { };
more-itertools = callPackage ../development/python2-modules/more-itertools { };
# ninja python stub was created to help simplify python builds using PyPA's
# build tool in Python 3, but it does not yet support Python 2
ninja = pkgs.buildPackages.ninja;
packaging = callPackage ../development/python2-modules/packaging { };
pip = callPackage ../development/python2-modules/pip { };
pluggy = callPackage ../development/python2-modules/pluggy { };
pycairo = callPackage ../development/python2-modules/pycairo {
inherit (pkgs.buildPackages) meson;
};
pygobject2 = callPackage ../development/python2-modules/pygobject { };
pygtk = callPackage ../development/python2-modules/pygtk { };
pyparsing = callPackage ../development/python2-modules/pyparsing { };
pytest = pytest_4;
pytest_4 = callPackage ../development/python2-modules/pytest {
# hypothesis tests require pytest that causes dependency cycle
hypothesis = self.hypothesis.override {
doCheck = false;
};
};
pytest-xdist = callPackage ../development/python2-modules/pytest-xdist { };
recoll = disabled super.recoll;
rivet = disabled super.rivet;
rpm = disabled super.rpm;
scandir = callPackage ../development/python2-modules/scandir { };
setuptools = callPackage ../development/python2-modules/setuptools { };
setuptools-scm = callPackage ../development/python2-modules/setuptools-scm { };
typing = callPackage ../development/python2-modules/typing { };
six = super.six.overridePythonAttrs (_: {
doCheck = false; # circular dependency with pytest
});
wcwidth = callPackage ../development/python2-modules/wcwidth {
inherit wcwidth;
};
wheel = callPackage ../development/python2-modules/wheel { };
zeek = disabled super.zeek;
zipp = callPackage ../development/python2-modules/zipp { };
}