Files
nixpkgs/pkgs/development/python-modules/pygments-markdown-lexer/default.nix
T
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

29 lines
619 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{ lib
, buildPythonPackage
, fetchPypi
, pygments
}:
buildPythonPackage rec {
pname = "pygments-markdown-lexer";
version = "0.1.0.dev39";
format = "setuptools";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "1pzb5wy23q3fhs0rqzasjnw6hdzwjngpakb73i98cn0b8lk8q4jc";
};
propagatedBuildInputs = [ pygments ];
doCheck = false;
meta = with lib; {
homepage = "https://github.com/jhermann/pygments-markdown-lexer";
description = "Pygments Markdown Lexer A Markdown lexer for Pygments to highlight Markdown code snippets";
license = licenses.asl20;
};
}