1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Added MySQL-python + nose (which is a dependency)

svn path=/nixpkgs/trunk/; revision=25245
This commit is contained in:
Sander van der Burg 2010-12-22 17:03:30 +00:00
parent 6016038097
commit 706a9ed1e8

View file

@ -479,6 +479,19 @@ rec {
};
});
nose = buildPythonPackage {
name = "nose-0.11.3";
src = fetchurl {
url = http://python-nose.googlecode.com/files/nose-0.11.3.tar.gz;
sha256 = "1hl3lbwdfl2a64q3dxc73kbiks4iwx5cixlbavyryd8xdr7iziww";
};
meta = {
description = "A unittest-based testing framework for python that makes writing and running tests easier";
};
};
notify = pkgs.stdenv.mkDerivation (rec {
name = "python-notify-0.1.1";
@ -908,6 +921,25 @@ rec {
homepage = https://github.com/ahupp/python-magic;
};
};
MySQL_python = buildPythonPackage {
name = "MySQL-python-1.2.3";
doCheck = false;
src = fetchurl {
url = mirror://sourceforge/mysql-python/MySQL-python-1.2.3.tar.gz;
sha256 = "0vkyg9dmj29hzk7fy77f42p7bfj28skyzsjsjry4wqr3z6xnzrkx";
};
propagatedBuildInputs = [ pkgs.mysql pkgs.zlib nose ];
meta = {
description = "MySQL database binding for Python";
homepage = http://sourceforge.net/projects/mysql-python;
};
};
setuptoolsDarcs = buildPythonPackage {
name = "setuptools-darcs-1.2.9";