blob: 45e066d3311cde7b4e40c62f1144ab39578fc34e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Python 2 overlay applied to resholve's local python27 package set.
# Provides the bootstrap toolchain (bootstrapped-pip/pip/setuptools/wheel)
# plus resholve's own python2 build dependencies, kept here so all of
# resholve's python2 surface lives in one place.
self: super:
with self;
with super;
{
bootstrapped-pip = toPythonModule (callPackage ./python2-modules/bootstrapped-pip { });
pip = callPackage ./python2-modules/pip { };
setuptools = callPackage ./python2-modules/setuptools { };
wheel = callPackage ./python2-modules/wheel { };
# resholve build deps
configargparse = callPackage ./python2-modules/configargparse { };
six = callPackage ./python2-modules/six { };
typing = callPackage ./python2-modules/typing { };
oildev = callPackage ./python2-modules/oildev { };
sedparse = callPackage ./python2-modules/sedparse { };
}
|