pythonPackages.osprofiler: 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 21571b7000
commit e7ddd5e476
1 changed files with 2 additions and 1 deletions

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" ""
''; '';
}; };