pythonPackages.branca: init at 0.2.0
This commit is contained in:
parent
b7ed6ef9e1
commit
2aeff6c05c
30
pkgs/development/python-modules/branca/default.nix
Normal file
30
pkgs/development/python-modules/branca/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -3264,6 +3264,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
branca = callPackage ../development/python-modules/branca { };
|
||||
|
||||
bugwarrior = buildPythonPackage rec {
|
||||
name = "bugwarrior-${version}";
|
||||
version = "1.4.0";
|
||||
|
Loading…
Reference in New Issue
Block a user