manual: fix buildPythonPackage example (#42866)

This commit is contained in:
Alyssa Ross 2018-07-03 17:19:18 +02:00 committed by Robert Schütz
parent 2f3cf58309
commit 79ab3370ed

View file

@ -436,7 +436,7 @@ Let's split the package definition from the environment definition.
We first create a function that builds `toolz` in `~/path/to/toolz/release.nix`
```nix
{ pkgs, buildPythonPackage }:
{ lib, pkgs, buildPythonPackage }:
buildPythonPackage rec {
pname = "toolz";
@ -447,7 +447,7 @@ buildPythonPackage rec {
sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd";
};
meta = {
meta = with lib; {
homepage = "http://github.com/pytoolz/toolz/";
description = "List processing tools and functional utilities";
license = licenses.bsd3;