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;
};
}