pythonPackages.osprofiler: remove argparse from requirements
Since argparse module is now part of python stdlib.
This commit is contained in:
parent
21571b7000
commit
e7ddd5e476
|
@ -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" ""
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue