mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
36bf6afd42
Be able to build arbitrary Julia environments in Nixpkgs, in the same style as python.withPackages.
22 lines
493 B
Nix
22 lines
493 B
Nix
{ lib
|
|
, python3
|
|
}:
|
|
|
|
# This file contains an extra mapping from Julia packages to the Python packages they depend on.
|
|
|
|
with lib;
|
|
|
|
rec {
|
|
packageMapping = {
|
|
ExcelFiles = ["xlrd"];
|
|
PyPlot = ["matplotlib"];
|
|
PythonPlot = ["matplotlib"];
|
|
SymPy = ["sympy"];
|
|
};
|
|
|
|
getExtraPythonPackages = names: concatMap (name: let
|
|
allCandidates = if hasAttr name packageMapping then getAttr name packageMapping else [];
|
|
in
|
|
filter (x: hasAttr x python3.pkgs) allCandidates
|
|
) names;
|
|
}
|