nixpkgs/pkgs/development/python-modules/branca/default.nix

31 lines
619 B
Nix
Raw Normal View History

2017-05-04 16:18:03 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, jinja2
, selenium
}:
buildPythonPackage rec {
pname = "branca";
2018-06-12 18:46:58 +02:00
version = "0.3.0";
2017-05-04 16:18:03 +02:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2018-06-12 18:46:58 +02:00
sha256 = "bea38396cf58fd7173ac942277fe4138127eb1546622684206cb34d344b03fb4";
2017-05-04 16:18:03 +02:00
};
checkInputs = [ pytest selenium ];
propagatedBuildInputs = [ jinja2 ];
# Seems to require a browser
doCheck = false;
meta = {
description = "Generate complex HTML+JS pages with Python";
homepage = https://github.com/python-visualization/branca;
license = with lib.licenses; [ mit ];
};
}