summary refs log tree commit diff
path: root/pkgs/tools/backup/s3ql
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-05-07 12:55:45 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-05-07 12:56:09 +0200
commitef4442e827af928a3fd394cb0731b554a31e8d5b (patch)
tree4aa8f846f6a3074b4dc99fb16dd14bdc78ac3dd6 /pkgs/tools/backup/s3ql
parent024ddb32a7137c81c0e86ba59876c0cf4d5425e7 (diff)
downloadnixpkgs-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar
nixpkgs-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar.gz
nixpkgs-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar.bz2
nixpkgs-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar.lz
nixpkgs-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar.xz
nixpkgs-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar.zst
nixpkgs-ef4442e827af928a3fd394cb0731b554a31e8d5b.zip
Python: replace requests2 with requests tree-wide
See f63eb5857352705665411130d4f1638d55dd8c58

The `requests2` attribute now throws an error informing that `requests`
should be used instead.
Diffstat (limited to 'pkgs/tools/backup/s3ql')
-rw-r--r--pkgs/tools/backup/s3ql/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/backup/s3ql/default.nix b/pkgs/tools/backup/s3ql/default.nix
index a90738d39a4..05bf38613ef 100644
--- a/pkgs/tools/backup/s3ql/default.nix
+++ b/pkgs/tools/backup/s3ql/default.nix
@@ -12,7 +12,7 @@ python3Packages.buildPythonApplication rec {
 
   buildInputs = [ which ]; # tests will fail without which
   propagatedBuildInputs = with python3Packages; [
-    sqlite apsw pycrypto requests2 defusedxml dugong llfuse
+    sqlite apsw pycrypto requests defusedxml dugong llfuse
     cython pytest pytest-catchlog
   ];