mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
34 lines
711 B
Nix
34 lines
711 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
sphinx,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxcontrib-programoutput";
|
|
version = "0.17";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-MA7puMrug1XSXMdLTRx+/RLmCNKtFl4xQdMeb7wVK38=";
|
|
};
|
|
|
|
buildInputs = [ sphinx ];
|
|
|
|
# fails to import sphinxcontrib.serializinghtml
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "sphinxcontrib.programoutput" ];
|
|
|
|
pythonNamespaces = [ "sphinxcontrib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Sphinx extension to include program output";
|
|
homepage = "https://github.com/NextThought/sphinxcontrib-programoutput";
|
|
license = licenses.bsd2;
|
|
maintainers = [ ];
|
|
};
|
|
}
|