about summary refs log tree commit diff
path: root/pkgs/development/python-modules/generic
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2015-11-18 17:56:26 +0100
committerDomen Kožar <domen@dev.si>2015-11-21 21:44:12 +0100
commita912c45ee2a3560d0cffe0ac10dd07ae1000ac1d (patch)
tree5cb51eb8ad0086f84c4e84c47dd46fc4a6bedc38 /pkgs/development/python-modules/generic
parentec0f58b459d176b39dadf4fc22727bbc6bea298c (diff)
buildPythonPackage: get rid of setupPyInstallFlags since there is no such thing
Diffstat (limited to 'pkgs/development/python-modules/generic')
-rw-r--r--pkgs/development/python-modules/generic/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix
index cb2d67c61eba4..acdcc7233cdb4 100644
--- a/pkgs/development/python-modules/generic/default.nix
+++ b/pkgs/development/python-modules/generic/default.nix
@@ -95,7 +95,7 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled"] // {
     export PYTHONPATH="$out/${python.sitePackages}:$PYTHONPATH"
 
     pushd dist
-    ${bootstrapped-pip}/bin/pip install *.whl --no-index --prefix=$out
+    ${bootstrapped-pip}/bin/pip install *.whl --no-index --prefix=$out --no-cache
     popd
 
     runHook postInstall