pythonPackages.unittest2: use correct name under py3k

This commit is contained in:
Domen Kožar 2013-12-29 13:20:54 +01:00
parent da71287281
commit 4cc859c6be

View File

@ -6851,6 +6851,10 @@ pythonPackages = modules // import ./python-packages-generated.nix {
md5 = "a0af5cac92bbbfa0c3b0e99571390e0f";
};
preConfigure = ''
sed -i 's/unittest2py3k/unittest2/' setup.py
'';
meta = {
description = "A backport of the new features added to the unittest testing framework in Python 2.7";
homepage = http://pypi.python.org/pypi/unittest2;