pkgs/top-level/python-packages.nix: added python-mock-0.6.0
This version seems to be an unofficial release from tahoe-lafs.org based on the mock-0.1.0 release from python-mock.sourceforge.net. It should probably replace the old version we have in here. svn path=/nixpkgs/trunk/; revision=22791
This commit is contained in:
parent
60026c0a32
commit
38bda8a8bf
1 changed files with 20 additions and 0 deletions
|
@ -322,6 +322,26 @@ rec {
|
|||
};
|
||||
});
|
||||
|
||||
mock060 = pkgs.lowPrio (buildPythonPackage (rec {
|
||||
# TODO: This appears to be an unofficially hacked version of 'mock'
|
||||
# from above. This could probably replace the previous
|
||||
# package, but I don't have time to test that right now.
|
||||
name = "mock-0.6.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-dep-sdists/${name}.tar.bz2";
|
||||
sha256 = "1vwxzr2sjyl3x5jqgz9swpmp6cyhmwmab65akysfglf6acmn3czf";
|
||||
};
|
||||
doCheck = false; # Package doesn't have any tests.
|
||||
|
||||
meta = {
|
||||
description = "Mock objects for Python, provided by tahoe-lafs.org";
|
||||
homepage = "http://python-mock.sourceforge.net/";
|
||||
license = "mBSD";
|
||||
};
|
||||
}));
|
||||
|
||||
|
||||
namebench = buildPythonPackage (rec {
|
||||
name = "namebench-1.0.5";
|
||||
|
||||
|
|
Loading…
Reference in a new issue