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

31 lines
694 B
Nix
Raw Normal View History

2018-10-30 15:42:37 +00:00
{ lib, buildPythonPackage, fetchPypi
2019-10-27 15:17:49 +00:00
, decorator, requests, simplejson, pillow
, nose, mock, pytest, freezegun }:
buildPythonPackage rec {
pname = "datadog";
version = "0.34.1";
2018-10-30 15:42:37 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1msi3wm0khmzh0ad7lwd5gigmqrxj25hd4w0qrsarihmd4ywrn1v";
};
2018-11-29 11:45:50 +00:00
postPatch = ''
find . -name '*.pyc' -exec rm {} \;
'';
2019-10-27 15:17:49 +00:00
propagatedBuildInputs = [ decorator requests simplejson pillow ];
checkInputs = [ nose mock pytest freezegun ];
2019-10-27 15:17:49 +00:00
checkPhase = ''
pytest tests/unit
'';
2018-04-06 17:59:50 +01:00
meta = with lib; {
description = "The Datadog Python library";
license = licenses.bsd3;
homepage = "https://github.com/DataDog/datadogpy";
};
}