summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2018-10-04 21:51:46 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-10-30 21:09:34 +0100
commitbaf070301096f5c6c1765d7e14c05032c4f27df9 (patch)
treec5472db5153b0abe03e5466be28be60aa28f06f3 /doc
parentfe30cce533f38ff44af8f884a4594cc3155d96d4 (diff)
downloadnixlib-baf070301096f5c6c1765d7e14c05032c4f27df9.tar
nixlib-baf070301096f5c6c1765d7e14c05032c4f27df9.tar.gz
nixlib-baf070301096f5c6c1765d7e14c05032c4f27df9.tar.bz2
nixlib-baf070301096f5c6c1765d7e14c05032c4f27df9.tar.lz
nixlib-baf070301096f5c6c1765d7e14c05032c4f27df9.tar.xz
nixlib-baf070301096f5c6c1765d7e14c05032c4f27df9.tar.zst
nixlib-baf070301096f5c6c1765d7e14c05032c4f27df9.zip
pythonPackages.pythondaemon: rename to pythonPackages.python-daemon
This commit renames the pythondaemon module to match its module name, github
name, and pypi name, which makes it easier to find and reference. In order to
avoid breaking any external users, I've left an alias with a deprecated warning.
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/python.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index b52b79c62d91..e6c8ab37d68a 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -670,7 +670,7 @@ python3Packages.buildPythonApplication rec {
     sha256 = "035w8gqql36zlan0xjrzz9j4lh9hs0qrsgnbyw07qs7lnkvbdv9x";
   };
 
-  propagatedBuildInputs = with python3Packages; [ tornado_4 pythondaemon ];
+  propagatedBuildInputs = with python3Packages; [ tornado_4 python-daemon ];
 
   meta = with lib; {
     ...