mediawiki: 1.42.4 -> 1.43.0 (#369641)
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-programoutput / default.nix
blob6a455531ab0d4ba7e5b4bdd5185bf179b872352a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   sphinx,
6 }:
8 buildPythonPackage rec {
9   pname = "sphinxcontrib-programoutput";
10   version = "0.17";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-MA7puMrug1XSXMdLTRx+/RLmCNKtFl4xQdMeb7wVK38=";
16   };
18   buildInputs = [ sphinx ];
20   # fails to import sphinxcontrib.serializinghtml
21   doCheck = false;
23   pythonImportsCheck = [ "sphinxcontrib.programoutput" ];
25   pythonNamespaces = [ "sphinxcontrib" ];
27   meta = with lib; {
28     description = "Sphinx extension to include program output";
29     homepage = "https://github.com/NextThought/sphinxcontrib-programoutput";
30     license = licenses.bsd2;
31     maintainers = [ ];
32   };