2021-06-17 22:30:33 +02:00
|
|
|
{ lib
|
|
|
|
, callPackage
|
|
|
|
, hyDefinedPythonPackages ? python-packages: [] /* Packages like with python.withPackages */
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
withPackages = (
|
|
|
|
python-packages: callPackage ./builder.nix {
|
|
|
|
hyDefinedPythonPackages = python-packages;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
in
|
|
|
|
(withPackages hyDefinedPythonPackages) // {
|
|
|
|
# Export withPackages function for hy customization
|
|
|
|
inherit withPackages;
|
2017-01-18 15:32:59 +01:00
|
|
|
}
|