summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-bayesnet/default.nix
blob: 0f0b6c545cfa037f91200acf95e3df3f5a12ac96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}