10 buildPythonPackage rec {
11 pname = "logmatic-python";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
19 repo = "logmatic-python";
20 rev = "refs/tags/${version}";
21 hash = "sha256-UYKm00KhXnPQDkKJVm7s0gOwZ3GNY07O0oKbzPhAdVE=";
24 nativeBuildInputs = [ setuptools ];
26 propagatedBuildInputs = [ python-json-logger ];
28 # Only functional tests, no unit tests
31 pythonImportsCheck = [ "logmatic" ];
34 description = "Python helpers to send logs to Logmatic.io";
35 homepage = "https://github.com/logmatic/logmatic-python";
36 license = licenses.mit;
37 maintainers = with maintainers; [ fab ];