mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
Merge pull request #170288 from thiagokokada/remove-graal-python
pythonInterpreters.graalpython37: remove
This commit is contained in:
commit
24b06017a3
@ -300,11 +300,6 @@ in {
|
||||
inherit passthruFun;
|
||||
};
|
||||
|
||||
graalpython37 = callPackage ./graalpython/default.nix {
|
||||
self = pythonInterpreters.graalpython37;
|
||||
inherit passthruFun;
|
||||
};
|
||||
|
||||
rustpython = callPackage ./rustpython/default.nix {
|
||||
inherit (darwin.apple_sdk.frameworks) SystemConfiguration;
|
||||
};
|
||||
|
@ -1,21 +0,0 @@
|
||||
{ pkgs
|
||||
, lib
|
||||
, graalvm8
|
||||
, passthruFun
|
||||
, packageOverrides ? (self: super: {})
|
||||
, self
|
||||
}:
|
||||
|
||||
let
|
||||
passthru = passthruFun {
|
||||
inherit self packageOverrides;
|
||||
implementation = "graal";
|
||||
sourceVersion = graalvm8.version;
|
||||
pythonVersion = "3.7";
|
||||
libPrefix = "graalvm";
|
||||
sitePackages = "jre/languages/python/lib-python/3/site-packages";
|
||||
executable = "graalpython";
|
||||
hasDistutilsCxxPatch = false;
|
||||
pythonForBuild = pkgs.buildPackages.pythonInterpreters.graalpython37;
|
||||
};
|
||||
in lib.extendDerivation true passthru graalvm8
|
Loading…
Reference in New Issue
Block a user