Files
nixpkgs/pkgs/development/python-modules/pygments-better-html/default.nix
T
Alexis Hildebrandt bf995e3641 treewide: Remove ending period from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00

33 lines
670 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,
isPy3k,
}:
buildPythonPackage rec {
pname = "pygments_better_html";
version = "0.1.5";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-SLAe5ubIGEchUNoHCct6CWisBja3WNEfpE48v9CTzPQ=";
};
propagatedBuildInputs = [ pygments ];
# has no tests
doCheck = false;
pythonImportsCheck = [ "pygments_better_html" ];
meta = with lib; {
homepage = "https://github.com/Kwpolska/pygments_better_html";
description = "Improved line numbering for Pygments HTML formatter";
license = licenses.bsd3;
maintainers = with maintainers; [ hexa ];
};
}