summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-11-04 00:03:34 +0000
committerGitHub <noreply@github.com>2022-11-04 00:03:34 +0000
commit08b08d0cafdb33de47cb964f20b2bed74f930d4a (patch)
tree3ea8ea19fd6f8af861963cffcaffa666032e907c /doc
parenta5a5133aaf7568d869185fb4701d1fb0c73ae34c (diff)
parent33a2310cb412c81bc735f9ccd640fcaa700a3304 (diff)
downloadnixpkgs-08b08d0cafdb33de47cb964f20b2bed74f930d4a.tar
nixpkgs-08b08d0cafdb33de47cb964f20b2bed74f930d4a.tar.gz
nixpkgs-08b08d0cafdb33de47cb964f20b2bed74f930d4a.tar.bz2
nixpkgs-08b08d0cafdb33de47cb964f20b2bed74f930d4a.tar.lz
nixpkgs-08b08d0cafdb33de47cb964f20b2bed74f930d4a.tar.xz
nixpkgs-08b08d0cafdb33de47cb964f20b2bed74f930d4a.tar.zst
nixpkgs-08b08d0cafdb33de47cb964f20b2bed74f930d4a.zip
Merge staging-next into staging
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/python.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index fa7aa3ec924..1723a1337e5 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -1670,9 +1670,9 @@ If you need to change a package's attribute(s) from `configuration.nix` you coul
 
 ```nix
   nixpkgs.config.packageOverrides = super: {
-    python = super.python.override {
+    python3 = super.python3.override {
       packageOverrides = python-self: python-super: {
-        twisted = python-super.twisted.overrideAttrs (oldAttrs: {
+        twisted = python-super.twisted.overridePythonAttrs (oldAttrs: {
           src = super.fetchPypi {
             pname = "twisted";
             version = "19.10.0";