Python: Difference between revisions

imported>Jooooscha
m add propagatedBuildInputs
imported>PicoGeyer
Added parenthesis around the withPackages expression to prevent errors
Line 89: Line 89:
   packages = [
   packages = [
     # ...
     # ...
     python3.withPackages my-pythonPackages # we have defined this in the installation section
     (python3.withPackages my-pythonPackages) # we have defined this in the installation section
   ];
   ];
}
}