mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
40 lines
748 B
Nix
40 lines
748 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, chardet
|
|
, configparser
|
|
, datadog
|
|
, requests
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gradient_statsd";
|
|
version = "1.0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "iWlNX43ZtvU73wz4+8DgDulQNOnssJGxTBkvAaLj530=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
chardet
|
|
datadog
|
|
requests
|
|
]
|
|
++ lib.optional python.isPy2 configparser;
|
|
|
|
pythonImportsCheck = [ "gradient_statsd" ];
|
|
|
|
# Pypi does not contain tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Wrapper around the DogStatsd client";
|
|
homepage = "https://paperspace.com";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
};
|
|
}
|