3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.mixpanel: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-15 14:46:38 -04:00 committed by Frederik Rietdijk
parent 1c4bd5703c
commit 12067dc30f
2 changed files with 31 additions and 21 deletions

View file

@ -0,0 +1,30 @@
{ stdenv
, buildPythonPackage
, fetchzip
, pytest
, mock
, six
, isPy3k
}:
buildPythonPackage rec {
version = "4.0.2";
pname = "mixpanel";
disabled = isPy3k;
src = fetchzip {
url = "https://github.com/mixpanel/mixpanel-python/archive/${version}.zip";
sha256 = "0yq1bcsjzsz7yz4rp69izsdn47rvkld4wki2xmapp8gg2s9i8709";
};
buildInputs = [ pytest mock ];
propagatedBuildInputs = [ six ];
checkPhase = "py.test tests.py";
meta = with stdenv.lib; {
homepage = https://github.com/mixpanel/mixpanel-python;
description = ''This is the official Mixpanel Python library'';
license = licenses.asl20;
};
}

View file

@ -1435,27 +1435,7 @@ in {
miniupnpc = callPackage ../development/python-modules/miniupnpc {};
mixpanel = buildPythonPackage rec {
version = "4.0.2";
name = "mixpanel-${version}";
disabled = isPy3k;
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;
};
};
mixpanel = callPackage ../development/python-modules/mixpanel { };
mpyq = callPackage ../development/python-modules/mpyq { };