Silence pip warning in nix-shell
This commit is contained in:
parent
2e9f5b52ee
commit
d50c1647ef
1 changed files with 1 additions and 0 deletions
|
|
@ -14,6 +14,7 @@ stdenv.mkDerivation {
|
||||||
SOURCE_DATE_EPOCH=$(date +%s) # so that we can use python wheels
|
SOURCE_DATE_EPOCH=$(date +%s) # so that we can use python wheels
|
||||||
virtualenv --no-setuptools venv > /dev/null
|
virtualenv --no-setuptools venv > /dev/null
|
||||||
export PATH=$PWD/venv/bin:$PATH > /dev/null
|
export PATH=$PWD/venv/bin:$PATH > /dev/null
|
||||||
|
export PIP_DISABLE_PIP_VERSION_CHECK=1
|
||||||
pip install -r requirements.txt > /dev/null
|
pip install -r requirements.txt > /dev/null
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue