about summary refs log tree commit diff
path: root/pkgs/development/python-modules/betamax-matchers
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-20 23:21:18 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-07-21 13:32:53 +0200
commit703c10847211d13fd897a54061d90123680b410a (patch)
treed121117bbc8f399c7fedadf7aa03f19858a37252 /pkgs/development/python-modules/betamax-matchers
parenta5158b8c01cc92b6057beec08ed402cc5614ccdb (diff)
pythonPackages: deprecate requests_toolbelt alias
Diffstat (limited to 'pkgs/development/python-modules/betamax-matchers')
-rw-r--r--pkgs/development/python-modules/betamax-matchers/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/betamax-matchers/default.nix b/pkgs/development/python-modules/betamax-matchers/default.nix
index 459d3c51d7edf..087329d103e7d 100644
--- a/pkgs/development/python-modules/betamax-matchers/default.nix
+++ b/pkgs/development/python-modules/betamax-matchers/default.nix
@@ -1,5 +1,5 @@
 { lib, buildPythonPackage, fetchPypi
-, betamax, requests_toolbelt }:
+, betamax, requests-toolbelt }:
 
 buildPythonPackage rec {
   pname = "betamax-matchers";
@@ -10,7 +10,7 @@ buildPythonPackage rec {
     sha256 = "07qpwjyq2i2aqhz5iwghnj4pqr2ys5n45v1vmpcfx9r5mhwrsq43";
   };
 
-  buildInputs = [ betamax requests_toolbelt ];
+  buildInputs = [ betamax requests-toolbelt ];
 
   meta = with lib; {
     homepage = "https://github.com/sigmavirus24/betamax_matchers";