Files
nixpkgs/pkgs/development/python-modules/statsd/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

38 lines
671 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "statsd";
version = "4.0.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "jsocol";
repo = "pystatsd";
tag = "v${version}";
hash = "sha256-g830TjFERKUguFKlZeaOhCTlaUs0wcDg4bMdRDr3smw=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
mock
pytestCheckHook
];
enabledTestPaths = [ "statsd/tests.py" ];
meta = with lib; {
maintainers = [ ];
description = "Simple statsd client";
license = licenses.mit;
homepage = "https://github.com/jsocol/pystatsd";
};
}