python312Packages.llm-gguf: init at 0.2 (#364926)
[NixPkgs.git] / pkgs / development / python-modules / pytest-logdog / default.nix
blobb047d86acc12f86630ed94fc18e0ea194f6e4fb3
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytest,
6   pytestCheckHook,
7   pythonOlder,
8   setuptools,
9   setuptools-scm,
12 buildPythonPackage rec {
13   pname = "pytest-logdog";
14   version = "0.1.0";
15   format = "setuptools";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "ods";
21     repo = pname;
22     rev = version;
23     hash = "sha256-Tmoq+KAGzn0MMj29rukDfAc4LSIwC8DoMTuBAppV32I=";
24   };
26   nativeBuildInputs = [ setuptools-scm ];
28   buildInputs = [ pytest ];
30   propagatedBuildInputs = [ setuptools ];
32   nativeCheckInputs = [ pytestCheckHook ];
34   pythonImportsCheck = [ "pytest_logdog" ];
36   meta = with lib; {
37     description = "Pytest plugin to test logging";
38     homepage = "https://github.com/ods/pytest-logdog";
39     license = licenses.mit;
40     maintainers = with maintainers; [ fab ];
41   };