meta for offline-distutils

svn path=/nixpkgs/branches/stdenv-updates/; revision=32586
This commit is contained in:
Florian Friesdorf 2012-02-26 17:23:20 +00:00
parent 8e32380a79
commit 0f81888e09

View File

@ -18,4 +18,17 @@ stdenv.mkDerivation {
allow-hosts = None
EOF
'';
meta = {
description = "distutils configured to disallow downloads";
longDescription = ''
A normal distutils with added distutils.cfg to set allow-hosts
to None. This dissallows easy_install to download any packages.
It is used by buildPythonPackage to ensure that no packages are
downloaded during build/test/install.
'';
license = stdenv.lib.licenses.psfl;
platforms = stdenv.lib.platforms.all;
maintainers = with stdenv.lib.maintainers; [ simons chaoflow ];
};
}