forked from mirrors/nixpkgs
pypy.withPackages
was forgotten in https://github.com/NixOS/nixpkgs/pull/15804
This commit is contained in:
parent
228331cc7d
commit
3502599730
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2, pkgconfig, libffi
|
{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2, pkgconfig, libffi
|
||||||
, sqlite, openssl, ncurses, pythonFull, expat, tcl, tk, xlibsWrapper, libX11
|
, sqlite, openssl, ncurses, pythonFull, expat, tcl, tk, xlibsWrapper, libX11
|
||||||
, makeWrapper, callPackage, self, gdbm, db }:
|
, makeWrapper, callPackage, self, pypyPackages, gdbm, db }:
|
||||||
|
|
||||||
assert zlibSupport -> zlib != null;
|
assert zlibSupport -> zlib != null;
|
||||||
|
|
||||||
|
@ -109,6 +109,7 @@ let
|
||||||
buildEnv = callPackage ../python/wrapper.nix { python = self; };
|
buildEnv = callPackage ../python/wrapper.nix { python = self; };
|
||||||
interpreter = "${self}/bin/${executable}";
|
interpreter = "${self}/bin/${executable}";
|
||||||
sitePackages = "site-packages";
|
sitePackages = "site-packages";
|
||||||
|
withPackages = import ../with-packages.nix { inherit buildEnv; pythonPackages = pypyPackages; };
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true; # almost no parallelization without STM
|
enableParallelBuilding = true; # almost no parallelization without STM
|
||||||
|
|
Loading…
Reference in a new issue