Merge pull request #29158 from nlewo/ofxclient

pythonPackages.ofxclient and pythonPackages.osprofiler: remove argparse from requirements
This commit is contained in:
Frederik Rietdijk 2017-09-10 08:53:40 +02:00 committed by GitHub
commit 6521a83efe

View File

@ -15014,7 +15014,7 @@ in {
}; };
propagatedBuildInputs = with self; [ propagatedBuildInputs = with self; [
pbr argparse six webob pbr six webob
]; ];
buildInputs = with self; [ buildInputs = with self; [
oslosphinx coverage mock subunit testrepository testtools oslosphinx coverage mock subunit testrepository testtools
@ -15022,6 +15022,7 @@ in {
patchPhase = '' patchPhase = ''
sed -i 's@python@${python.interpreter}@' .testr.conf sed -i 's@python@${python.interpreter}@' .testr.conf
substituteInPlace requirements.txt --replace "argparse" ""
''; '';
}; };
@ -25393,10 +25394,14 @@ EOF
sha256 = "99ab03bffdb30d9ec98724898f428f8e73129483417d5892799a0f0d2249f233"; sha256 = "99ab03bffdb30d9ec98724898f428f8e73129483417d5892799a0f0d2249f233";
}; };
patchPhase = ''
substituteInPlace setup.py --replace '"argparse",' ""
'';
# ImportError: No module named tests # ImportError: No module named tests
doCheck = false; doCheck = false;
propagatedBuildInputs = with self; [ ofxhome ofxparse beautifulsoup keyring argparse ]; propagatedBuildInputs = with self; [ ofxhome ofxparse beautifulsoup keyring ];
}; };
ofxhome = buildPythonPackage rec { ofxhome = buildPythonPackage rec {