summary refs log tree commit diff
path: root/pkgs/development/python-modules/stevedore
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-22 12:30:45 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-01-22 12:43:07 +0100
commit8c57113e143d406af1fe7d97865b9ae84a6f8e60 (patch)
treef71571e256577d00afff6b08dbb431ea375fd701 /pkgs/development/python-modules/stevedore
parentabf05bd7d10540a32597c30955f60cbaca27e57e (diff)
downloadnixpkgs-8c57113e143d406af1fe7d97865b9ae84a6f8e60.tar
nixpkgs-8c57113e143d406af1fe7d97865b9ae84a6f8e60.tar.gz
nixpkgs-8c57113e143d406af1fe7d97865b9ae84a6f8e60.tar.bz2
nixpkgs-8c57113e143d406af1fe7d97865b9ae84a6f8e60.tar.lz
nixpkgs-8c57113e143d406af1fe7d97865b9ae84a6f8e60.tar.xz
nixpkgs-8c57113e143d406af1fe7d97865b9ae84a6f8e60.tar.zst
nixpkgs-8c57113e143d406af1fe7d97865b9ae84a6f8e60.zip
python.pkgs.argparse: remove
argparse is part of stdlib in 2.7 and 3.2+
Diffstat (limited to 'pkgs/development/python-modules/stevedore')
-rw-r--r--pkgs/development/python-modules/stevedore/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/stevedore/default.nix b/pkgs/development/python-modules/stevedore/default.nix
index 8027688c9ea..4e607799d22 100644
--- a/pkgs/development/python-modules/stevedore/default.nix
+++ b/pkgs/development/python-modules/stevedore/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchPypi, pbr, six, argparse }:
+{ stdenv, buildPythonPackage, fetchPypi, pbr, six }:
 
 buildPythonPackage rec {
   pname = "stevedore";
@@ -11,7 +11,7 @@ buildPythonPackage rec {
 
   doCheck = false;
 
-  propagatedBuildInputs = [ pbr six argparse ];
+  propagatedBuildInputs = [ pbr six ];
 
   meta = with stdenv.lib; {
     description = "Manage dynamic plugins for Python applications";