mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
d6dd12a2c9
- use nixpkgs-fmt - disable on unsupported Python releases - normalize pname
52 lines
865 B
Nix
52 lines
865 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, certifi
|
|
, chardet
|
|
, datadog
|
|
, decorator
|
|
, fetchPypi
|
|
, idna
|
|
, requests
|
|
, urllib3
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gradient-statsd";
|
|
version = "1.0.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "gradient_statsd";
|
|
inherit version;
|
|
hash = "sha256-iWlNX43ZtvU73wz4+8DgDulQNOnssJGxTBkvAaLj530=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
certifi
|
|
chardet
|
|
datadog
|
|
decorator
|
|
idna
|
|
requests
|
|
urllib3
|
|
];
|
|
|
|
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;
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|