depot/third_party/nixpkgs/pkgs/development/python-modules/sphinx-jinja/default.nix
Default email 22017988c6 Project import generated by Copybara.
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
2022-04-27 11:35:20 +02:00

27 lines
704 B
Nix

{ lib, buildPythonPackage, fetchPypi, pythonOlder, sphinx }:
buildPythonPackage rec {
pname = "sphinx-jinja";
version = "2.0.1";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-3lMY1InG1PaAqhIrp5kovE6t+kTTpTKS3ir+WI/+RAY=";
};
propagatedBuildInputs = [ sphinx ];
# upstream source is not updated to 2.0.X and pypi does not contain tests
doCheck = false;
pythonImportsCheck = [ "sphinx_jinja" ];
meta = with lib; {
description = "Sphinx extension to include jinja templates in documentation";
homepage = "https://github.com/tardyp/sphinx-jinja";
maintainers = with maintainers; [ ];
license = licenses.mit;
};
}