Merge pull request #6339 from psibi/pythonmagick-fix

Integrate mailchimp.
This commit is contained in:
Domen Kožar 2015-02-20 07:22:15 +01:00
commit a76b53b06b

View file

@ -2961,6 +2961,30 @@ let
propagatedBuildInputs = with self; [ logilab_common ];
};
mailchimp = buildPythonPackage rec {
version = "2.0.9";
name = "mailchimp-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/m/mailchimp/mailchimp-${version}.tar.gz";
sha256 = "0351ai0jqv3dzx0xxm1138sa7mb42si6xfygl5ak8wnfc95ff770";
};
# Test fails because specific version of docopt is searched
# (Possible fix: Needs upstream patching in the library)
doCheck = false;
buildInputs = with self; [ docopt ];
propagatedBuildInputs = with self; [ requests ];
meta = {
description = "A CLI client and Python API library for the MailChimp email platform";
homepage = "http://apidocs.mailchimp.com/api/2.0/";
license = stdenv.lib.licenses.mit;
};
};
logster = buildPythonPackage {
name = "logster-7475c53822";