summary refs log tree commit diff
path: root/doc/languages-frameworks/python.section.md
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-03-14 12:21:14 +0000
committerGitHub <noreply@github.com>2021-03-14 12:21:14 +0000
commit977005c64f5f972f8c7ef52b483f2227d3623fc9 (patch)
treea3ec780c5bae42db019e968adb6e80a6e6fd9551 /doc/languages-frameworks/python.section.md
parent2c7bf48e77f3aca0cb8d1698b08a810ce07f468f (diff)
parent8c04f70ddd1846816678b6a617a7b0ae4ad98b03 (diff)
downloadnixpkgs-977005c64f5f972f8c7ef52b483f2227d3623fc9.tar
nixpkgs-977005c64f5f972f8c7ef52b483f2227d3623fc9.tar.gz
nixpkgs-977005c64f5f972f8c7ef52b483f2227d3623fc9.tar.bz2
nixpkgs-977005c64f5f972f8c7ef52b483f2227d3623fc9.tar.lz
nixpkgs-977005c64f5f972f8c7ef52b483f2227d3623fc9.tar.xz
nixpkgs-977005c64f5f972f8c7ef52b483f2227d3623fc9.tar.zst
nixpkgs-977005c64f5f972f8c7ef52b483f2227d3623fc9.zip
Merge staging-next into staging
Diffstat (limited to 'doc/languages-frameworks/python.section.md')
-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 6b78cc3fe41..c0f1342a94f 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -335,7 +335,7 @@ Above, we were mostly just focused on use cases and what to do to get started
 creating working Python environments in nix.
 
 Now that you know the basics to be up and running, it is time to take a step
-back and take a deeper look at at how Python packages are packaged on Nix. Then,
+back and take a deeper look at how Python packages are packaged on Nix. Then,
 we will look at how you can use development mode with your code.
 
 #### Python library packages in Nixpkgs
@@ -936,7 +936,7 @@ because their behaviour is different:
 
 * `nativeBuildInputs ? []`: Build-time only dependencies. Typically executables
   as well as the items listed in `setup_requires`.
-* `buildInputs ? []`: Build and/or run-time dependencies that need to be be
+* `buildInputs ? []`: Build and/or run-time dependencies that need to be
   compiled for the host machine. Typically non-Python libraries which are being
   linked.
 * `checkInputs ? []`: Dependencies needed for running the `checkPhase`. These