11 buildPythonPackage rec {
16 disabled = pythonOlder "3.6";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-vXnyAfC9avKz8U4+MJVnu2zoPD0nR2qarWYidhEPW5s=";
25 nativeBuildInputs = [ setuptools ];
27 propagatedBuildInputs = [ attrs ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "grafanalib" ];
34 description = "Library for building Grafana dashboards";
35 homepage = "https://github.com/weaveworks/grafanalib/";
36 changelog = "https://github.com/weaveworks/grafanalib/releases/tag/v${version}";
37 license = licenses.asl20;
38 maintainers = with maintainers; [ michaelgrahamevans ];