727493fff0
GitOrigin-RevId: b839d4a8557adc80e522f674529e586ab2a88d23
26 lines
683 B
Nix
26 lines
683 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" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Wrapper around the DogStatsd client";
|
|
homepage = "https://paperspace.com";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
};
|
|
}
|