nixpkgs/pkgs/development/python-modules/datadog/default.nix

28 lines
595 B
Nix
Raw Normal View History

2018-10-30 15:42:37 +00:00
{ lib, buildPythonPackage, fetchPypi
2018-04-06 16:59:50 +00:00
, decorator, requests, simplejson
, nose, mock }:
buildPythonPackage rec {
pname = "datadog";
version = "0.29.3";
2018-10-30 15:42:37 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0p47hy1p2hf233blalyz0yr6nf13iwk9ndkqdk428dmf8b8m2plr";
};
2018-11-29 11:45:50 +00:00
postPatch = ''
find . -name '*.pyc' -exec rm {} \;
'';
2018-04-06 16:59:50 +00:00
propagatedBuildInputs = [ decorator requests simplejson ];
2018-04-06 16:59:50 +00:00
checkInputs = [ nose mock ];
meta = with lib; {
description = "The Datadog Python library";
license = licenses.bsd3;
homepage = https://github.com/DataDog/datadogpy;
};
}