nixpkgs/pkgs/development/python-modules/pygments-better-html/default.nix
2021-01-25 18:31:47 +01:00

32 lines
666 B
Nix
Raw Permalink 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.4";
disabled = ! isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "028szd3k295yhz943bj19i4kx6f0pfh1fd2q14id0g84dl4i49dm";
};
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 ];
};
}