summary refs log tree commit diff
path: root/pkgs/development/python-modules/tenacity
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 /pkgs/development/python-modules/tenacity
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 'pkgs/development/python-modules/tenacity')
-rw-r--r--pkgs/development/python-modules/tenacity/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/tenacity/default.nix b/pkgs/development/python-modules/tenacity/default.nix
index c1c0abcec24..4591677cdf9 100644
--- a/pkgs/development/python-modules/tenacity/default.nix
+++ b/pkgs/development/python-modules/tenacity/default.nix
@@ -1,5 +1,5 @@
 { lib, buildPythonPackage, fetchPypi, isPy27, isPy3k
-, pbr, six, futures ? null, monotonic ? null, typing ? null, setuptools_scm
+, pbr, six, futures ? null, monotonic ? null, typing ? null, setuptools-scm
 , pytest, sphinx, tornado, typeguard
 }:
 
@@ -12,7 +12,7 @@ buildPythonPackage rec {
     sha256 = "5bd16ef5d3b985647fe28dfa6f695d343aa26479a04e8792b9d3c8f49e361ae1";
   };
 
-  nativeBuildInputs = [ pbr setuptools_scm ];
+  nativeBuildInputs = [ pbr setuptools-scm ];
   propagatedBuildInputs = [ six ]
     ++ lib.optionals isPy27 [ futures monotonic typing ];