doc/python: remove unnecessary let statement

This commit is contained in:
Felix Biggs 2019-03-18 20:01:54 -04:00 committed by worldofpeace
parent 1dbbb021cd
commit 1e86c0a7df

View file

@ -188,7 +188,7 @@ building Python libraries is `buildPythonPackage`. Let's see how we can build th
```nix ```nix
{ lib, buildPythonPackage, fetchPypi }: { lib, buildPythonPackage, fetchPypi }:
toolz = buildPythonPackage rec { buildPythonPackage rec {
pname = "toolz"; pname = "toolz";
version = "0.7.4"; version = "0.7.4";
@ -205,8 +205,7 @@ building Python libraries is `buildPythonPackage`. Let's see how we can build th
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ fridh ]; maintainers = with maintainers; [ fridh ];
}; };
}; };
}
``` ```
What happens here? The function `buildPythonPackage` is called and as argument What happens here? The function `buildPythonPackage` is called and as argument