manual: fix buildPythonPackage example (#42866)

Changed files
+2 -2
doc
languages-frameworks
+2 -2
doc/languages-frameworks/python.section.md
···
We first create a function that builds `toolz` in `~/path/to/toolz/release.nix`
```nix
-
{ pkgs, buildPythonPackage }:
+
{ lib, pkgs, buildPythonPackage }:
buildPythonPackage rec {
pname = "toolz";
···
sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd";
};
-
meta = {
+
meta = with lib; {
homepage = "http://github.com/pytoolz/toolz/";
description = "List processing tools and functional utilities";
license = licenses.bsd3;