depot/third_party/nixpkgs/pkgs/development/python-modules/gradient_statsd/default.nix
Default email cf3f6e7a7d Project import generated by Copybara.
GitOrigin-RevId: 24eb3f87fc610f18de7076aee7c5a84ac5591e3e
2020-11-30 09:33:03 +01:00

29 lines
735 B
Nix

{ lib, stdenv, fetchPypi, buildPythonPackage
, boto3, requests, datadog, configparser, python
}:
buildPythonPackage rec {
pname = "gradient_statsd";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "iWlNX43ZtvU73wz4+8DgDulQNOnssJGxTBkvAaLj530=";
};
propagatedBuildInputs = [ requests datadog ]
++ lib.optional python.isPy2 configparser;
pythonImportsCheck = [ "gradient_statsd" ];
# Pypi does not contain tests
doCheck = false;
meta = with stdenv.lib; {
description = "Wrapper around the DogStatsd client";
homepage = "https://paperspace.com";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ freezeboy ];
};
}