summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-06-03 12:09:11 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-06-03 12:44:33 +0200
commit89d5f4b3d09f86ffe9d9335c37d1f7e2dccaa5dc (patch)
tree4169f66ca4727f1ece429bb6c0bf2fa09703ce28 /doc
parent6d0f8c801534c9f8f90daa385ddf010692bab310 (diff)
downloadnixpkgs-89d5f4b3d09f86ffe9d9335c37d1f7e2dccaa5dc.tar
nixpkgs-89d5f4b3d09f86ffe9d9335c37d1f7e2dccaa5dc.tar.gz
nixpkgs-89d5f4b3d09f86ffe9d9335c37d1f7e2dccaa5dc.tar.bz2
nixpkgs-89d5f4b3d09f86ffe9d9335c37d1f7e2dccaa5dc.tar.lz
nixpkgs-89d5f4b3d09f86ffe9d9335c37d1f7e2dccaa5dc.tar.xz
nixpkgs-89d5f4b3d09f86ffe9d9335c37d1f7e2dccaa5dc.tar.zst
nixpkgs-89d5f4b3d09f86ffe9d9335c37d1f7e2dccaa5dc.zip
treewide: setuptools_scm -> setuptools-scm
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 b466748f548..feefefeabb7 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -847,7 +847,7 @@ using setup hooks.
 The following is an example:
 
 ```nix
-{ lib, buildPythonPackage, fetchPypi, hypothesis, setuptools_scm, attrs, py, setuptools, six, pluggy }:
+{ lib, buildPythonPackage, fetchPypi, hypothesis, setuptools-scm, attrs, py, setuptools, six, pluggy }:
 
 buildPythonPackage rec {
   pname = "pytest";
@@ -864,7 +864,7 @@ buildPythonPackage rec {
   '';
 
   checkInputs = [ hypothesis ];
-  nativeBuildInputs = [ setuptools_scm ];
+  nativeBuildInputs = [ setuptools-scm ];
   propagatedBuildInputs = [ attrs py setuptools six pluggy ];
 
   meta = with lib; {