doc/languages-frameworks/python: adjust expression to explanation

This commit is contained in:
natsukium 2024-06-02 11:29:06 +09:00
parent ef61a6339c
commit b6bf10bf70
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -1494,10 +1494,9 @@ with import <nixpkgs> {};
( let
toolz = callPackage /path/to/toolz/release.nix {
buildPythonPackage = python310
Packages.buildPythonPackage;
buildPythonPackage = python3Packages.buildPythonPackage;
};
in python310.withPackages (ps: [
in python3.withPackages (ps: [
ps.numpy
toolz
])