python odo: 0.3.3 -> 0.3.4 and fix tests

This commit is contained in:
Frederik Rietdijk 2015-12-14 17:38:33 +01:00
parent 556e968924
commit 5e3d2b83a2

View File

@ -11427,15 +11427,20 @@ in modules // {
odo = buildPythonPackage rec {
name = "odo-${version}";
version= "0.3.3";
version= "0.3.4";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/o/odo/${name}.tar.gz";
sha256 = "2499ee86c26c74daa28f21ed235ca331911065950deea5169ebdb7d5dae6ebef";
sha256 = "77bdb372999ac0d9ef272927d7867a668108a4193e11eb8646bf770370a30725";
};
buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [ datashape numpy pandas toolz multipledispatch networkx ];
checkPhase = ''
py.test odo/tests
'';
meta = {
homepage = https://github.com/ContinuumIO/odo;
description = "Data migration utilities";