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

30 lines
587 B
Nix
Raw Normal View History

2017-05-04 15:18:03 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, jinja2
, selenium
}:
buildPythonPackage rec {
pname = "branca";
2018-06-12 17:46:58 +01:00
version = "0.3.0";
2017-05-04 15:18:03 +01:00
src = fetchPypi {
inherit pname version;
2018-06-12 17:46:58 +01:00
sha256 = "bea38396cf58fd7173ac942277fe4138127eb1546622684206cb34d344b03fb4";
2017-05-04 15:18:03 +01: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 ];
};
}