mixpanel: init at 4.0.2

This commit is contained in:
Samuel Rivas 2015-11-17 22:19:54 +01:00
parent 8d33c88c4f
commit f1f7a438d1

View file

@ -2796,6 +2796,28 @@ let
};
};
mixpanel = buildPythonPackage rec {
version = "4.0.2";
name = "mixpanel-${version}";
src = pkgs.fetchzip {
url = "https://github.com/mixpanel/mixpanel-python/archive/${version}.zip";
sha256 = "0yq1bcsjzsz7yz4rp69izsdn47rvkld4wki2xmapp8gg2s9i8709";
};
buildInputs = with self; [ pytest mock ];
propagatedBuildInputs = with self; [ six ];
checkPhase = "py.test tests.py";
meta = {
homepage = https://github.com/mixpanel/mixpanel-python;
description = "This is the official Mixpanel Python library. This library
allows for server-side integration of Mixpanel.";
license = stdenv.lib.licenses.asl20;
};
};
pkginfo = buildPythonPackage rec {
version = "1.2.1";
name = "pkginfo-${version}";