summary refs log tree commit diff
path: root/pkgs/development/python-modules/toolz
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2018-10-09 20:42:29 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-10-12 10:06:25 +0200
commitc0af13f1c87fad7cd99f4f27903c73fb5a7b32e2 (patch)
treef36adff1eb6ceb78087f73f849fa7f7205a22a44 /pkgs/development/python-modules/toolz
parent9cba2f54fa2bfeb6a07a84956d7f6fa908d62795 (diff)
downloadnixpkgs-c0af13f1c87fad7cd99f4f27903c73fb5a7b32e2.tar
nixpkgs-c0af13f1c87fad7cd99f4f27903c73fb5a7b32e2.tar.gz
nixpkgs-c0af13f1c87fad7cd99f4f27903c73fb5a7b32e2.tar.bz2
nixpkgs-c0af13f1c87fad7cd99f4f27903c73fb5a7b32e2.tar.lz
nixpkgs-c0af13f1c87fad7cd99f4f27903c73fb5a7b32e2.tar.xz
nixpkgs-c0af13f1c87fad7cd99f4f27903c73fb5a7b32e2.tar.zst
nixpkgs-c0af13f1c87fad7cd99f4f27903c73fb5a7b32e2.zip
python: update documentation
This touches up a handful of places in the python documentation to try to make
the current best-practices more obvious. In particular, I often find the
function signatures (what to pass, what not to pass) confusing and have added
them to the docs.

Also updated the metas to be more consistent with the most frequently used
modern style.
Diffstat (limited to 'pkgs/development/python-modules/toolz')
-rw-r--r--pkgs/development/python-modules/toolz/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/toolz/default.nix b/pkgs/development/python-modules/toolz/default.nix
index 0fea8f1ab75..974e3a43bc7 100644
--- a/pkgs/development/python-modules/toolz/default.nix
+++ b/pkgs/development/python-modules/toolz/default.nix
@@ -21,10 +21,10 @@ buildPythonPackage rec{
     nosetests toolz/tests
   '';
 
-  meta = {
-    homepage = https://github.com/pytoolz/toolz/;
+  meta = with lib; {
+    homepage = https://github.com/pytoolz/toolz;
     description = "List processing tools and functional utilities";
-    license = lib.licenses.bsd3;
-    maintainers = with lib.maintainers; [ fridh ];
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ fridh ];
   };
 }