nixpkgs-suyu/pkgs/development/python-modules/sphinx-markdown-tables/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

31 lines
657 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, sphinx
, markdown
}:
buildPythonPackage rec {
pname = "sphinx-markdown-tables";
version = "0.0.17";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-a8bT1ADqzP7r0ohEa8CN2DCDNnxYuF1A/mwS1371kvE=";
};
propagatedBuildInputs = [
sphinx
markdown
];
pythonImportsCheck = [ "sphinx_markdown_tables" ];
meta = with lib; {
description = "Sphinx extension for rendering tables written in markdown";
homepage = "https://github.com/ryanfox/sphinx-markdown-tables";
maintainers = with maintainers; [ Madouura ];
license = licenses.gpl3;
};
}