python.pkgs.argparse: remove

argparse is part of stdlib in 2.7 and 3.2+
This commit is contained in:
Robert Schütz
2019-01-22 12:30:45 +01:00
parent abf05bd7d1
commit 8c57113e14
18 changed files with 19 additions and 33 deletions

View File

@@ -1,4 +1,4 @@
{ buildPythonPackage, stdenv, glibcLocales, mock, nose, isPy3k, argparse, jinja2, six
{ buildPythonPackage, stdenv, glibcLocales, mock, nose, isPy3k, jinja2, six
, fetchPypi
}:
@@ -18,7 +18,7 @@ buildPythonPackage rec {
LC_ALL="en_US.UTF-8" nosetests
'';
propagatedBuildInputs = [ argparse jinja2 six ];
propagatedBuildInputs = [ jinja2 six ];
meta = with stdenv.lib; {
homepage = https://github.com/domenkozar/mr.bob;