2021-03-24 14:12:48 +03:00
|
|
|
# Extension with Python 2 packages that is overlayed on top
|
|
|
|
# of the Python 3 packages set. This way, Python 2+3 compatible
|
|
|
|
# packages can still be used.
|
|
|
|
|
2021-03-24 15:10:59 +03:00
|
|
|
self: super:
|
|
|
|
|
|
|
|
with self; with super; {
|
2022-07-28 18:59:55 +03:00
|
|
|
attrs = callPackage ../development/python2-modules/attrs { };
|
2021-03-24 15:10:59 +03:00
|
|
|
|
2023-08-03 17:42:56 +03:00
|
|
|
backports-functools-lru-cache = callPackage ../development/python2-modules/backports-functools-lru-cache { };
|
|
|
|
|
2022-10-03 13:25:02 +03:00
|
|
|
bootstrapped-pip = toPythonModule (callPackage ../development/python2-modules/bootstrapped-pip { });
|
2021-09-13 22:21:06 +03:00
|
|
|
|
2022-08-20 23:01:12 +03:00
|
|
|
cffi = callPackage ../development/python2-modules/cffi { inherit cffi; };
|
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
configparser = callPackage ../development/python2-modules/configparser { };
|
2021-03-24 19:45:56 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
contextlib2 = callPackage ../development/python2-modules/contextlib2 { };
|
2021-03-24 19:45:56 +03:00
|
|
|
|
2022-01-18 11:08:31 +03:00
|
|
|
coverage = callPackage ../development/python2-modules/coverage { };
|
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
enum = callPackage ../development/python2-modules/enum { };
|
2021-11-09 00:50:05 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
filelock = callPackage ../development/python2-modules/filelock { };
|
2021-06-03 00:32:30 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
futures = callPackage ../development/python2-modules/futures { };
|
2021-03-24 19:45:56 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
hypothesis = callPackage ../development/python2-modules/hypothesis { };
|
2021-03-24 15:10:59 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
importlib-metadata = callPackage ../development/python2-modules/importlib-metadata { };
|
2021-03-24 19:45:56 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
jinja2 = callPackage ../development/python2-modules/jinja2 { };
|
2021-03-24 19:45:56 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
markupsafe = callPackage ../development/python2-modules/markupsafe { };
|
2021-06-03 00:29:47 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
mock = callPackage ../development/python2-modules/mock { };
|
2021-03-24 19:45:56 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
more-itertools = callPackage ../development/python2-modules/more-itertools { };
|
2021-03-24 15:10:59 +03:00
|
|
|
|
2023-08-26 11:13:55 +03:00
|
|
|
# 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;
|
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
packaging = callPackage ../development/python2-modules/packaging { };
|
2021-03-24 15:10:59 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
pip = callPackage ../development/python2-modules/pip { };
|
2021-03-24 15:10:59 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
pluggy = callPackage ../development/python2-modules/pluggy { };
|
2021-08-27 00:31:41 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
pycairo = callPackage ../development/python2-modules/pycairo {
|
2021-11-12 19:52:50 +03:00
|
|
|
inherit (pkgs.buildPackages) meson;
|
2021-04-11 22:25:49 +03:00
|
|
|
};
|
|
|
|
|
2022-12-09 23:26:58 +03:00
|
|
|
pygobject2 = callPackage ../development/python2-modules/pygobject { };
|
2021-03-24 15:10:59 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
pygtk = callPackage ../development/python2-modules/pygtk { };
|
2021-03-24 19:45:56 +03:00
|
|
|
|
2022-01-17 18:18:38 +03:00
|
|
|
pyparsing = callPackage ../development/python2-modules/pyparsing { };
|
|
|
|
|
2021-03-24 15:10:59 +03:00
|
|
|
pytest = pytest_4;
|
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
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 { };
|
2021-03-25 11:04:38 +03:00
|
|
|
|
2021-12-03 00:44:01 +03:00
|
|
|
recoll = disabled super.recoll;
|
|
|
|
|
2021-03-24 15:10:59 +03:00
|
|
|
rivet = disabled super.rivet;
|
|
|
|
|
|
|
|
rpm = disabled super.rpm;
|
|
|
|
|
2022-12-12 20:11:10 +03:00
|
|
|
scandir = callPackage ../development/python2-modules/scandir { };
|
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
setuptools = callPackage ../development/python2-modules/setuptools { };
|
|
|
|
|
|
|
|
setuptools-scm = callPackage ../development/python2-modules/setuptools-scm { };
|
2021-03-24 19:45:56 +03:00
|
|
|
|
2022-12-13 04:47:52 +03:00
|
|
|
typing = callPackage ../development/python2-modules/typing { };
|
|
|
|
|
2022-12-09 22:00:20 +03:00
|
|
|
six = super.six.overridePythonAttrs (_: {
|
|
|
|
doCheck = false; # circular dependency with pytest
|
|
|
|
});
|
|
|
|
|
2023-08-03 17:43:49 +03:00
|
|
|
wcwidth = callPackage ../development/python2-modules/wcwidth {
|
|
|
|
inherit wcwidth;
|
|
|
|
};
|
|
|
|
|
2023-02-05 12:56:51 +03:00
|
|
|
wheel = callPackage ../development/python2-modules/wheel { };
|
|
|
|
|
2021-04-26 23:50:06 +03:00
|
|
|
zeek = disabled super.zeek;
|
2021-03-24 14:12:48 +03:00
|
|
|
|
2022-01-16 09:34:26 +03:00
|
|
|
zipp = callPackage ../development/python2-modules/zipp { };
|
2021-03-24 19:45:56 +03:00
|
|
|
|
2021-03-24 14:12:48 +03:00
|
|
|
}
|