pythonPackages.ofxclient: remove argparse from requirements

Since argparse module is now part of python stdlib.
This commit is contained in:
Antoine Eiche 2017-09-09 22:30:20 +02:00
parent 4ff9e9e333
commit 21571b7000

View file

@ -25389,10 +25389,14 @@ EOF
sha256 = "99ab03bffdb30d9ec98724898f428f8e73129483417d5892799a0f0d2249f233";
};
patchPhase = ''
substituteInPlace setup.py --replace '"argparse",' ""
'';
# ImportError: No module named tests
doCheck = false;
propagatedBuildInputs = with self; [ ofxhome ofxparse beautifulsoup keyring argparse ];
propagatedBuildInputs = with self; [ ofxhome ofxparse beautifulsoup keyring ];
};
ofxhome = buildPythonPackage rec {