depot/third_party/nixpkgs/pkgs/development/python-modules/sphinxcontrib-wavedrom/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

45 lines
902 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
setuptools-scm,
sphinx,
wavedrom,
xcffib,
cairosvg,
}:
buildPythonPackage rec {
pname = "sphinxcontrib-wavedrom";
version = "3.0.4";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-0zTHVBr9kXwMEo4VRTFsxdX2HI31DxdHfLUHCQmw1Ko=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
sphinx
wavedrom
xcffib
cairosvg
];
# No tests included
doCheck = false;
pythonImportsCheck = [ "sphinxcontrib.wavedrom" ];
pythonNamespaces = [ "sphinxcontrib" ];
meta = with lib; {
description = "A sphinx extension that allows including wavedrom diagrams by using its text-based representation";
homepage = "https://github.com/bavovanachte/sphinx-wavedrom";
license = licenses.mit;
maintainers = with maintainers; [ fsagbuya ];
};
}