11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
19 owner = "python-visualization";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-ipu0JZIx/YgR7F5Z7sl/9YEEHkyiDllR5dHko7AlSe8=";
26 # We don't want flake8
34 propagatedBuildInputs = [
43 pythonImportsCheck = [
48 # Some tests require a browser
49 "tests/test_utilities.py"
53 "test_rendering_utf8_iframe"
54 "test_rendering_figure_notebook"
58 description = "Generate complex HTML+JS pages with Python";
59 homepage = "https://github.com/python-visualization/branca";
60 changelog = "https://github.com/python-visualization/branca/blob/v${version}/CHANGES.txt";
61 license = with licenses; [ mit ];
62 maintainers = with lib.maintainers; [ ];