Merge pull request #4745 from anderspapitto/master

add datadiff and termcolor python packages
This commit is contained in:
Domen Kožar 2014-10-31 12:36:54 +02:00
commit 0433a33816

View File

@ -11685,4 +11685,37 @@ let
maintainers = [ stdenv.lib.maintainers.DamienCassou ];
};
};
datadiff = buildPythonPackage rec {
name = "datadiff-1.1.6";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/d/datadiff/datadiff-1.1.6.zip";
md5 = "c34a690db75eead148aa5fa89e575d1e";
};
buildInputs = with self; [ nose ];
meta = with stdenv.lib; {
description = "DataDiff";
homepage = http://sourceforge.net/projects/datadiff/;
license = licenses.asl20;
};
};
termcolor = buildPythonPackage rec {
name = "termcolor-1.1.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/t/termcolor/termcolor-1.1.0.tar.gz";
md5 = "043e89644f8909d462fbbfa511c768df";
};
meta = with stdenv.lib; {
description = "Termcolor";
homepage = http://pypi.python.org/pypi/termcolor;
license = licenses.mit;
};
};
}); in pythonPackages