python: datadog: 0.29.3 -> 0.30.0

This commit is contained in:
Frederik Rietdijk 2019-10-24 08:47:28 +02:00
parent e2bc89ddfb
commit f462fa4d84

View file

@ -1,14 +1,16 @@
{ lib, buildPythonPackage, fetchPypi
, decorator, requests, simplejson
, nose, mock }:
, nose, mock
, pillow
}:
buildPythonPackage rec {
pname = "datadog";
version = "0.29.3";
version = "0.30.0";
src = fetchPypi {
inherit pname version;
sha256 = "0p47hy1p2hf233blalyz0yr6nf13iwk9ndkqdk428dmf8b8m2plr";
sha256 = "07c053e39c6509023d69bc2f3b8e3d5d101b4e75baf2da2b9fc707391c3e773d";
};
postPatch = ''
@ -17,7 +19,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ decorator requests simplejson ];
checkInputs = [ nose mock ];
checkInputs = [ nose mock pillow ];
meta = with lib; {
description = "The Datadog Python library";