pythonPackages.branca: init at 0.2.0

This commit is contained in:
Frederik Rietdijk 2017-05-04 16:18:03 +02:00
parent b7ed6ef9e1
commit 2aeff6c05c
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, jinja2
, selenium
}:
buildPythonPackage rec {
pname = "branca";
version = "0.2.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "327b0bae73a519f25dc2f320d8d9f1885aad2e8e5105add1496269d5391b8ea4";
};
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 ];
};
}

View File

@ -3264,6 +3264,8 @@ in {
};
};
branca = callPackage ../development/python-modules/branca { };
bugwarrior = buildPythonPackage rec {
name = "bugwarrior-${version}";
version = "1.4.0";