mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
33 lines
668 B
Nix
33 lines
668 B
Nix
{
|
||
lib,
|
||
buildPythonPackage,
|
||
fetchPypi,
|
||
pygments,
|
||
isPy3k,
|
||
}:
|
||
|
||
buildPythonPackage rec {
|
||
pname = "pygments_better_html";
|
||
version = "0.1.5";
|
||
disabled = !isPy3k;
|
||
|
||
src = fetchPypi {
|
||
inherit pname version;
|
||
hash = "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 ];
|
||
};
|
||
}
|