pythonPackages.sphixcontrib-bayesnet: init at 0.1
This commit is contained in:
parent
91fbe357bd
commit
82fa6830d7
2 changed files with 26 additions and 0 deletions
|
@ -0,0 +1,24 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, sphinx, sphinxcontrib-tikz }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sphinxcontrib-bayesnet";
|
||||
version = "0.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0x1kisvj7221cxfzmwplx3xlwbavl636fpncnjh7gghp1af71clw";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ sphinx sphinxcontrib-tikz ];
|
||||
|
||||
# No tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "sphinxcontrib.bayesnet" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/jluttine/sphinx-bayesnet";
|
||||
description = "Bayesian networks and factor graphs in Sphinx using TikZ syntax";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ jluttine ];
|
||||
};
|
||||
}
|
|
@ -7761,6 +7761,8 @@ in {
|
|||
|
||||
sphinxcontrib-autoapi = callPackage ../development/python-modules/sphinxcontrib-autoapi { };
|
||||
|
||||
sphinxcontrib-bayesnet = callPackage ../development/python-modules/sphinxcontrib-bayesnet { };
|
||||
|
||||
sphinxcontrib-bibtex = callPackage ../development/python-modules/sphinxcontrib-bibtex { };
|
||||
|
||||
sphinxcontrib-blockdiag = callPackage ../development/python-modules/sphinxcontrib-blockdiag { };
|
||||
|
|
Loading…
Reference in a new issue