1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytest
5, jinja2
6, selenium
7}:
8
9buildPythonPackage rec {
10 pname = "branca";
11 version = "0.3.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "bea38396cf58fd7173ac942277fe4138127eb1546622684206cb34d344b03fb4";
16 };
17
18 checkInputs = [ pytest selenium ];
19 propagatedBuildInputs = [ jinja2 ];
20
21 # Seems to require a browser
22 doCheck = false;
23
24 meta = {
25 description = "Generate complex HTML+JS pages with Python";
26 homepage = https://github.com/python-visualization/branca;
27 license = with lib.licenses; [ mit ];
28 };
29}