ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-bayesnet / default.nix
blob6f53dd79d36460ad295d2ea41d545cfde43424e5
1 { stdenv, lib, buildPythonPackage, fetchPypi, sphinx, sphinxcontrib-tikz }:
3 buildPythonPackage rec {
4   pname = "sphinxcontrib-bayesnet";
5   version = "0.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0x1kisvj7221cxfzmwplx3xlwbavl636fpncnjh7gghp1af71clw";
10   };
12   propagatedBuildInputs = [ sphinx sphinxcontrib-tikz ];
14   # No tests
15   doCheck = false;
16   pythonImportsCheck = [ "sphinxcontrib.bayesnet" ];
18   meta = with lib; {
19     homepage = "https://github.com/jluttine/sphinx-bayesnet";
20     description = "Bayesian networks and factor graphs in Sphinx using TikZ syntax";
21     license = licenses.gpl3Only;
22     maintainers = with maintainers; [ jluttine ];
23     broken = true; # relies on 2to3 conversion, which was removed from setuptools>=58.0
24   };